Files
noctune-client/tailwind.config.js
T
2026-05-26 12:11:14 +07:00

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: [],
}