mirror of
https://github.com/GetOpenScript/OpenScript.git
synced 2026-09-18 09:45:43 +00:00
26 lines
526 B
JavaScript
26 lines
526 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
"./src/**/*.{html,js,jsx}",
|
|
"./src/*.{html,js,jsx}"
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
navy: {
|
|
950: '#041322',
|
|
900: '#072138',
|
|
800: '#0b2d4c',
|
|
700: '#0e3a63',
|
|
600: '#144e83',
|
|
},
|
|
slatebg: '#ebedf0',
|
|
},
|
|
fontFamily: {
|
|
mono: ['ui-monospace', 'SFMono-Regular', 'Menlo', 'Monaco', 'Consolas', 'monospace'],
|
|
}
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|