forked from agviegas/components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
39 lines (39 loc) · 1.43 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
module.exports = {
content: ['./src/**/*.html', './src/**/*.{js,ts}'],
theme: {
extend: {
colors: {
white: "#F2F2F2",
black: "#0D0D0D",
error: "#FF5252",
warning: "#FB8C00",
success: "#4CAF50",
ifcjs: {
100: "var(--secondary-color-100)",
120: "var(--secondary-color-120)",
200: "var(--primary-color)",
300: "var(--secondary-color)"
}
},
borderWidth: {
'1': '1px',
'3': '3px',
},
fontSize: {
'xs': ['12px', { lineHeight: '1rem' }],
'sm': ['14px', { lineHeight: '1.25rem' }],
'base': ['16px', { lineHeight: '1.5rem' }],
'lg': ['18px', { lineHeight: '1.75rem' }],
'xl': ['20px', { lineHeight: '1.75rem' }],
'2xl': ['22px', { lineHeight: '2rem' }],
'3xl': ['24px', { lineHeight: '2.25rem' }],
'4xl': ['26px', { lineHeight: '2.5rem' }],
'5xl': ['28px', { lineHeight: '1' }],
'6xl': ['30px', { lineHeight: '1' }],
'7xl': ['32px', { lineHeight: '1' }],
'8xl': ['34px', { lineHeight: '1' }],
'9xl': ['36px', { lineHeight: '1' }],
},
}
}
};