-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
60 lines (60 loc) · 1.5 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
49
50
51
52
53
54
55
56
57
58
59
60
module.exports = {
mode: 'jit',
purge: ['./public/index.html', './src/**/*.svelte'],
darkMode: false, // or 'media' or 'class'
theme: {
colors: {
primary: '#063843',
secondary: '#ADD8E6',
white: '#FFFFFF',
success: '#99F9BC',
failure: '#F2A68E',
skipped: '#C6CBCD',
},
gradientColorStops: theme => ({
...theme('colors'),
'pine-green': '#027478'
}),
fontSize: {
symbol: ['14rem', '14rem'],
'symbol-fold': ['10rem', '10rem'],
transcription: ['2rem', '2.5rem'],
button: '1.6rem',
input: '1.3rem',
score: '4rem',
'reference-symbol': '2rem',
'reference-transcription': '1.2rem',
settings: '1.5rem',
},
fontFamily: {
nunito: 'Nunito',
},
backdropBlur: {
'5': '5px',
},
extend: {
transitionProperty: {
'max-height': 'height',
},
height: {
page: 'calc(100% - 70px)'
},
spacing: {
header: '70px',
},
maxWidth: {
'16': '16px',
},
flexShrink: {
'2': 2,
},
screens: {
'fold': { 'max': '320px' }
}
},
},
variants: {
extend: {},
},
plugins: [],
}