mirror of
https://github.com/aliasvault/aliasvault.git
synced 2026-02-19 15:39:13 -05:00
26 lines
521 B
JavaScript
26 lines
521 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
"./src/**/*.{js,jsx,ts,tsx,html}"
|
|
],
|
|
darkMode: 'class',
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
primary: {
|
|
"900": "#7b4a1e",
|
|
"800": "#9a5d26",
|
|
"700": "#b8702f",
|
|
"600": "#d68338",
|
|
"500": "#f49541",
|
|
"400": "#f6a752",
|
|
"300": "#f8b963",
|
|
"200": "#fbcb74",
|
|
"100": "#fdde85",
|
|
"50": "#ffe096"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
plugins: [],
|
|
} |