-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathtailwind.config.js
More file actions
60 lines (59 loc) · 1.61 KB
/
tailwind.config.js
File metadata and controls
60 lines (59 loc) · 1.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
import daisyui from 'daisyui';
// import scrollbar from 'tailwind-scrollbar'; // uncomment when available
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
scrollbar: {
thin: '6px',
},
animation: {
'pulse-slow': 'pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite',
glow: 'glow 2s ease-in-out infinite alternate',
},
keyframes: {
glow: {
'0%': {
boxShadow: '0 0 5px rgba(6, 182, 212, 0.5)',
},
'100%': {
boxShadow: '0 0 20px rgba(6, 182, 212, 0.8), 0 0 30px rgba(6, 182, 212, 0.4)',
},
},
},
},
},
plugins: [daisyui],
daisyui: {
themes: [
{
unitydark: {
primary: '#4A90E2', // Unity blue
'primary-content': '#ffffff',
secondary: '#23272E', // Unity dark panel
'secondary-content': '#A6ADBB',
accent: '#2D2F34', // Slightly lighter for highlights
'accent-content': '#ffffff',
neutral: '#1B1C1F', // Main background
'neutral-content': '#A6ADBB',
'base-100': '#23272E', // Panel background
'base-200': '#1B1C1F', // Main background
'base-300': '#18191C', // Even darker
'base-content': '#A6ADBB',
info: '#4A90E2',
success: '#27AE60',
warning: '#F5A623',
error: '#E74C3C',
},
},
'dark',
'cupcake',
],
darkTheme: 'unitydark',
base: true,
styled: true,
utils: true,
logs: true,
},
};