Files
chesco/tailwind.config.mjs
T

38 lines
843 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
extend: {
colors: {
brand: {
navy: '#0a162b',
orange: '#f9a825',
accent: '#f39c12',
},
surface: {
primary: '#ffffff',
secondary: '#f1f1f1',
contrast: '#0a162b',
},
text: {
primary: '#000000',
secondary: '#4b5563',
onDark: '#ffffff',
},
border: {
subtle: '#e5e7eb',
strong: '#0a162b',
}
},
fontFamily: {
sans: ['Inter', 'system-ui', 'sans-serif'],
industrial: ['Oswald', 'Impact', 'sans-serif'],
},
borderRadius: {
'brand': '4px',
}
},
},
plugins: [],
}