All checks were successful
Production Build & Deploy / build-and-deploy (push) Successful in 25s
20 lines
369 B
JavaScript
20 lines
369 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
|
|
darkMode: 'class',
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
brand: {
|
|
darkBg: '#0b0f19',
|
|
darkCard: '#151b2c',
|
|
darkBorder: '#232d45',
|
|
arcticBlue: '#38bdf8',
|
|
lightText: '#f4f4f5',
|
|
}
|
|
}
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|