-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
46 lines (46 loc) · 1.35 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./src/renderer/index.html',
'./src/renderer/**/*.{html,js}',
],
theme: {
extend: {
fontSize: {
sm: '0.86666667rem',
base: '0.93333333rem',
xl: '1rem',
'2xl': '1.53333333rem',
},
colors: {
'sunlight': {
'100': '#541D0C',
'200': '#722B16',
'300': '#9F391A',
'400': '#C64922',
'500': '#DF5F38',
'600': '#EA7855',
'700': '#F69B7F',
'800': '#FCD1C4',
'900': '#FEF4F0',
},
'sunlight-gray': {
'100': '#2B2625',
'200': '#473C39',
'300': '#64534E',
'400': '#776864',
'500': '#918886',
'600': '#B6AAA7',
'700': '#CEC8C7',
'800': '#E5E2E1',
'900': '#F3F2F2',
},
},
transitionProperty: {
'height': 'height',
'spacing': 'margin, padding',
},
},
plugins: [],
}
}