forked from Leantime/leantime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
70 lines (69 loc) · 2.23 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
61
62
63
64
65
66
67
68
69
70
// default config:
import defaultConfig from 'tailwindcss/defaultConfig'
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./app/{Views,Domain}/**/*.{tpl,sub,inc,blade}.php',
'./app/Core/Template.php',
'./app/{Views,Domain}/**/{Composers,Controllers}/**/*.php',
],
prefix: 'tw-', // temporary prefix until bootstrap is removed
theme: {
extend: {
colors: {
'primary': {
DEFAULT: 'var(--primary-color)',
},
'secondary': {
DEFAULT: 'var(--secondary-color)',
},
},
fontSize: {
...defaultConfig.theme.fontSize,
'sm': 'var(--font-size-sm)',
'base': 'var(--base-font-size)',
'l': 'var(--font-size-l)',
'xl': 'var(--font-size-xl)',
'2xl': 'var(--font-size-xxl)',
'3xl': 'var(--font-size-xxxl)',
'4xl': 'calc(var(--font-size-xxxl) * 1.2)',
'5xl': 'calc(var(--font-size-xxxl) * 1.6)',
'6xl': 'calc(var(--font-size-xxxl) * 2)',
'7xl': 'calc(var(--font-size-xxxl) * 2.4)',
'8xl': 'calc(var(--font-size-xxxl) * 3.2)',
'9xl': 'calc(var(--font-size-xxxl) * 4.266)',
},
padding: {
...defaultConfig.theme.padding,
'none': '0',
'xs': '5px',
'sm': '10px',
'base': '15px',
'm': '15px',
'l': '20px',
'xl': '30px',
},
margin: {
...defaultConfig.theme.margin,
'none': '0',
'xs': '5px',
'sm': '10px',
'base': '15px',
'm': '15px',
'l': '20px',
'xl': '30px',
},
gap: {
...defaultConfig.theme.gap,
'none': '0',
'xs': '5px',
'sm': '10px',
'base': '15px',
'm': '15px',
'l': '20px',
'xl': '30px',
},
},
},
plugins: [],
}