26 lines
612 B
JavaScript
26 lines
612 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
|
|
module.exports = {
|
|
content: ['./app/**/*.{ts,tsx}', './components/**/*.{ts,tsx}'],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
sans: ['var(--font-geist-sans)', 'sans-serif'],
|
|
mono: ['var(--font-geist-mono)', 'monospace'],
|
|
},
|
|
colors: {
|
|
brand: {
|
|
DEFAULT: '#3366FF',
|
|
light: '#4D7AFF',
|
|
dark: '#254EDB',
|
|
surface: '#F5F8FF',
|
|
border: '#D6E0FF',
|
|
navy: '#1E2E55',
|
|
heading: '#2E3A59',
|
|
},
|
|
},
|
|
},
|
|
},
|
|
plugins: [require('@tailwindcss/typography')],
|
|
}
|