mirror of
https://github.com/Myxelium/Bridge-Multi.git
synced 2026-04-09 05:09:39 +00:00
57 lines
1.0 KiB
JavaScript
57 lines
1.0 KiB
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
theme: {
|
|
extend: {
|
|
screens: {
|
|
'3xl': '1900px',
|
|
},
|
|
},
|
|
},
|
|
content: ['./src-angular/**/*.{html,js,ts}'],
|
|
plugins: [
|
|
require('tailwind-scrollbar')({ nocompatible: true }),
|
|
require('daisyui'),
|
|
],
|
|
daisyui: {
|
|
logs: false,
|
|
themes: [
|
|
'business',
|
|
'dark',
|
|
'dim',
|
|
'night',
|
|
'sunset',
|
|
'synthwave',
|
|
'aqua',
|
|
'emerald',
|
|
'lemonade',
|
|
'nord',
|
|
'valentine',
|
|
'winter',
|
|
{
|
|
'aren': {
|
|
"primary": "#00FFFF",
|
|
"secondary": "#FF1010",
|
|
"accent": "#999999",
|
|
"neutral": "#606666",
|
|
"base-100": "#111111",
|
|
"info": "#666666",
|
|
"success": "#AEFFFF",
|
|
"warning": "#FF5555",
|
|
"error": "#FF1111",
|
|
},
|
|
'froogs': {
|
|
"primary": "#22d3ee",
|
|
"secondary": "#e879f9",
|
|
"accent": "#818cf8",
|
|
"neutral": "#312e81",
|
|
"base-100": "#280044",
|
|
"info": "#7e22ce",
|
|
"success": "#c026d3",
|
|
"warning": "#fef08a",
|
|
"error": "#111827",
|
|
},
|
|
},
|
|
],
|
|
}
|
|
}
|