mirror of
https://github.com/INFTF/xahau-course.git
synced 2026-04-29 14:57:42 +00:00
26 lines
483 B
JavaScript
26 lines
483 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
"./index.html",
|
|
"./src/**/*.{js,jsx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
xahau: {
|
|
accent: '#c8ff00',
|
|
bg: '#080818',
|
|
surface: '#0e0e24',
|
|
border: '#1e1e3a',
|
|
muted: '#667',
|
|
}
|
|
},
|
|
fontFamily: {
|
|
display: ['Outfit', 'sans-serif'],
|
|
mono: ['Fira Code', 'monospace'],
|
|
}
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|