Files
ohmj2/partitions/tailwind.config.js
2026-02-18 10:08:48 +01:00

18 lines
285 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
extend: {
colors: {
ohmj: {
primary: '#1e3a5f',
secondary: '#c9a227',
light: '#f5f5f5',
dark: '#0a1f33'
}
}
}
},
plugins: []
};