-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.cjs
More file actions
57 lines (57 loc) · 1.33 KB
/
tailwind.config.cjs
File metadata and controls
57 lines (57 loc) · 1.33 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./index.html',
'./src/ui-layer/**/*.{js,ts,jsx,tsx,css}',
'./src/main.tsx'
],
theme: {
extend: {
colors: {
'game': {
900: '#0a0a0a',
800: '#1a1a1a',
700: '#2a2a2a',
600: '#3a3a3a',
500: '#4a4a4a',
400: '#5a5a5a',
300: '#6a6a6a',
200: '#7a7a7a',
100: '#8a8a8a',
},
'primary': {
900: '#312e81',
800: '#3730a3',
700: '#4338ca',
600: '#4f46e5',
500: '#6366f1',
400: '#818cf8',
300: '#a5b4fc',
200: '#c7d2fe',
100: '#e0e7ff',
},
'accent': {
900: '#7c2d12',
800: '#9a3412',
700: '#c2410c',
600: '#ea580c',
500: '#f97316',
400: '#fb923c',
300: '#fdba74',
200: '#fed7aa',
100: '#ffedd5',
},
},
animation: {
'pulse-slow': 'pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite',
},
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-game': 'linear-gradient(135deg, var(--tw-gradient-stops))',
},
},
},
plugins: [
require('@tailwindcss/forms'),
],
}