-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
70 lines (65 loc) · 1.69 KB
/
tailwind.config.js
File metadata and controls
70 lines (65 loc) · 1.69 KB
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
/** @type {import('tailwindcss').Config} */
module.exports = {
purge: ['./src/views/**/*.php'],
content: [
"./src/**/*.{html,js,php}",
],
darkMode: 'class', // o 'media' o 'class'
theme: {
extend: {
fontFamily: {
'sans': ['Montserrat', 'sans-serif'],
'material-ico' : "Material Symbols Outlined"
},
fontWeight: {
'normal': '100',
'medium': '500',
'wide': '600',
},
fontSize: {
'title': '2.5em',
'subtitle': '1.5em',
'subtitle_2': '1.25em',
'paragraph': '1em',
'low': '.9375em',
},
boxShadow: {
'low': 'var(--shadow-elevation-low)',
'medium': 'var(--shadow-elevation-medium)',
'high': 'var(--shadow-elevation-high)',
},
colors: {
// 'primary': 'var(--color-primary)',
'primary': '#d5ffff',
'secondary': 'var(--color-secondary)',
'tertiary': {
'100':'#005954',
'200':'#338b85',
'300':'#5dc1b9',
'400':'#358b35'
},
'text-primary': 'var(--color-text-primary)',
'text-secondary': 'var(--color-text-secondary)',
'text-tertiary': 'var(--color-text-tertiary)',
'success': {
'200': 'var(--color-success)',
'100': 'var(--color-success-light)'
},
'warning': {
'200': 'var(--color-warning)',
'100': 'var(--color-warning-light)'
},
'error': {
'200': 'var(--color-error)',
'100': 'var(--color-error-light)'
},
'disabled': 'var(--color-disabled)',
'opaco': 'var(--opaco)',
},
},
},
variants: {
extend: {},
},
plugins: [],
}