24 lines
520 B
JavaScript
24 lines
520 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
"./index.html",
|
|
"./src/**/*.{vue,js,ts,jsx,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
'noctune-teal': '#1a9b8f',
|
|
'noctune-cream': '#f5f0dc',
|
|
'noctune-yellow': '#ffd700',
|
|
'noctune-orange': '#ff6b35',
|
|
'noctune-dark': '#1a1a1a',
|
|
},
|
|
fontFamily: {
|
|
sans: ['Inter', 'system-ui', 'sans-serif'],
|
|
mono: ['Space Mono', 'monospace'],
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|