forked from Simnation/Main
32 lines
576 B
JavaScript
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: [],
|
|
}
|
|
|