22 lines
474 B
JavaScript
22 lines
474 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content:[
|
|
"./index.html",
|
|
"./src/**/*.{js,ts,jsx,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
base: 'var(--color-base)',
|
|
surface: 'var(--color-surface)',
|
|
panel: 'var(--color-panel)',
|
|
accent: 'var(--color-accent)',
|
|
text: 'var(--color-text)',
|
|
muted: 'var(--color-muted)'
|
|
}
|
|
},
|
|
},
|
|
plugins:[
|
|
require('@tailwindcss/typography'),
|
|
],
|
|
} |