-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
48 lines (48 loc) · 1.09 KB
/
tailwind.config.js
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{js,jsx,ts,tsx}', './public/index.html'],
theme: {
extend: {
margin: {
'68': '17rem',
'76': '19rem',
},
maxHeight: {
'106': '28rem',
'108': '30rem',
'110': '32rem',
'112': '34rem',
'114': '36rem',
'116': '38rem',
'118': '40rem',
'120': '42rem',
'122': '44rem',
'124': '46rem',
},
minHeight: {
'106': '28rem',
'108': '30rem',
'110': '32rem',
'112': '34rem',
'114': '36rem',
'116': '38rem',
'118': '40rem',
'120': '42rem',
'122': '44rem',
'124': '46rem',
},
colors: {
nobleBlack: '#0B0B0B',
lightNobleBlack: '#1a1a1a',
secondaryLightNobleBlack: '#1e1e1e',
nobleGold: '#d4b85b',
darkerNobleGold: '#dec049',
secondaryGold: '#fef250',
lightGray: '#333333',
softWhite: '#d6d6d6',
error: '#d10000',
},
},
},
plugins: [],
}