1
0
Fork 0
forked from Simnation/Main
Main/resources/[tools]/bl_idcard/web/tailwind.config.js
2025-08-04 04:28:47 +02:00

32 lines
576 B
JavaScript

/** @type {import('tailwindcss').Config} */
// --primary: #2c2c2c;
// --secondary: #424050;
// --accent: #8685ef;
// --text-primary: #faf7ff;
// --text-secondary: #2b2b2b;
export default {
content: [
"./index.html",
"./src/**/*.{svelte,js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
'txt-primary': 'var(--text)',
'txt-secondary': 'var(--title)',
'primary': 'var(--bg)',
'secondary': 'var(--bg-secondary)',
'accent': '#8685ef'
},
},
},
plugins: [],
}