Files
ndsolutionswebsite/tailwind.config.mjs
DanielS 80773cacee
All checks were successful
Production Build & Deploy / build-and-deploy (push) Successful in 25s
design: implement Bento-Grid and Corporate Dark Mode redesign
2026-07-06 00:55:27 +02:00

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: '#09090b',
darkCard: '#18181b',
darkBorder: '#27272a',
arcticBlue: '#00d2ff',
lightText: '#f4f4f5',
}
}
},
},
plugins: [],
}