-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
67 lines (67 loc) · 1.64 KB
/
tailwind.config.js
File metadata and controls
67 lines (67 loc) · 1.64 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
61
62
63
64
65
66
67
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./*.html",
"./display/**/*.html",
"./info/**/*.html",
"./global/**/*.js"
],
darkMode: 'class',
theme: {
extend: {
colors: {
primary: {
50: '#eff6ff',
100: '#dbeafe',
200: '#bfdbfe',
300: '#93c5fd',
400: '#60a5fa',
500: '#3b82f6',
600: '#2563eb',
700: '#1d4ed8',
800: '#1e40af',
900: '#1e3a8a'
},
nvidia: {
DEFAULT: '#76b900',
light: '#84cc16',
dark: '#65a30d'
},
amd: {
DEFAULT: '#ed1c24',
light: '#f43f5e',
dark: '#dc2626'
},
intel: {
DEFAULT: '#0071c5',
light: '#0ea5e9',
dark: '#0369a1'
}
},
boxShadow: {
'glow-nvidia': '0 0 25px rgba(118, 185, 0, 0.4)',
'glow-amd': '0 0 25px rgba(237, 28, 36, 0.4)',
'glow-intel': '0 0 25px rgba(0, 113, 197, 0.4)'
},
fontFamily: {
sans: ['IBM Plex Sans', 'system-ui', '-apple-system', 'sans-serif'],
mono: ['JetBrains Mono', 'ui-monospace', 'SFMono-Regular', 'Menlo', 'monospace']
},
animation: {
'fade-in': 'fadeIn 0.5s ease-out',
'slide-up': 'slideUp 0.4s ease-out',
},
keyframes: {
fadeIn: {
'0%': { opacity: '0' },
'100%': { opacity: '1' },
},
slideUp: {
'0%': { opacity: '0', transform: 'translateY(12px)' },
'100%': { opacity: '1', transform: 'translateY(0)' },
},
}
}
},
plugins: []
}