-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
60 lines (60 loc) · 1.31 KB
/
Copy pathtailwind.config.js
File metadata and controls
60 lines (60 loc) · 1.31 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./app/**/*.{js,jsx,ts,tsx}', './src/**/*.{js,jsx,ts,tsx}'],
darkMode: 'class',
presets: [require('nativewind/preset')],
theme: {
extend: {
colors: {
soundlog: {
bg: '#070B1F',
bg2: '#0B102A',
card: '#080D18',
elevated: '#090E1B',
chip: '#171B2A',
selected: '#4A1D96',
border: '#364283',
focus: '#B7E628',
blue: '#6EA8FF',
purple: '#7A2CFF',
gold: '#B1913A',
lime: '#B7E628',
player: '#45343D',
warning: '#FF8A3D',
action: '#4A1D96',
danger: '#8E310D',
inverse: '#FFFFFF',
},
},
opacity: {
12: '0.12',
14: '0.14',
15: '0.15',
16: '0.16',
22: '0.22',
28: '0.28',
34: '0.34',
35: '0.35',
38: '0.38',
42: '0.42',
45: '0.45',
46: '0.46',
48: '0.48',
52: '0.52',
55: '0.55',
56: '0.56',
58: '0.58',
62: '0.62',
65: '0.65',
66: '0.66',
68: '0.68',
72: '0.72',
74: '0.74',
76: '0.76',
82: '0.82',
85: '0.85',
},
},
},
plugins: [],
};