-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
57 lines (55 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
module.exports = {
mode: 'jit',
content: ['./public/**/*.html', './src/**/*.{js,jsx,ts,tsx,vue}'],
darkMode: 'media',
theme: {
extend: {
colors: {
// Map to Tailwind's colors names
'mblack' : 'var(--black)',
'mgray' : 'var(--gray)',
'mred' : 'var(--red)',
'myellow' : 'var(--yellow)',
'mgreen' : 'var(--green)',
'mbluel' : 'var(--blue)',
'mpurple' : 'var(--purple)',
'morange' : 'var(--orange)',
'mbg-base' : 'var(--bg-base)',
'mbg-active' : 'var(--bg-active)',
'mbg-hover' : 'var(--bg-hover)',
'mbg-1' : 'var(--bg-1)',
'mbg-2' : 'var(--bg-2)',
'mbg-3' : 'var(--bg-3)',
'mtext-base' : 'var(--text-base)',
'mtext-active' : 'var(--text-active)',
'mtext-hover' : 'var(--text-hover)',
'mtext-dim-1' : 'var(--text-dim-1)',
'mtext-dim-2' : 'var(--text-dim-2)',
'mtext-dim-3' : 'var(--text-dim-3)',
},
borderRadius: {
'memo': '5pt',
'mfull': '50%',
},
minHeight: {
'mcard': '20em'
},
minWidth: {
'mcard': '14em'
},
boxShadow: {
'memo': '0 0 15pt 2pt rgba(0, 0, 0, 0.25)'
},
fontFamily: {
'mono': ['"Roboto Mono"', 'ui-monospace', 'SFMono-Regular', 'Menlo', 'Monaco', 'Consolas', 'Liberation Mono', 'Courier New', 'monospace']
},
fontSize: {
'mbase': '12pt'
},
},
},
variants: {
extend: {},
},
plugins: [],
}