forked from chamilo/chamilo-lms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
73 lines (73 loc) · 1.87 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
71
72
73
module.exports = {
purge: [],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
fontFamily: {
sans: ['Helvetica Neue', 'Helvetica', 'Arial', 'sans-serif']
},
colors: {
'ch-primary': {
DEFAULT: '#84bd00', //default to '#2e75a3'
'dark': '#649d00', //default to '#1c6391',
'light': '#84bd00', //default '#9cc2da'
},
'ch-secondary': {
DEFAULT: '#772583', //default to '#fd6600',
'dark': '#570563', //default to '#ea5300',
'light': '#772583', //default to '#ff7913',
},
'ch-ternary': {
DEFAULT: '#162A83',
'dark': '#031770',
'light': '#293A96',
},
'ch-text': {
DEFAULT: '#333',
'primary': '#fff',
'secondary': '#fff',
'warning': '#333',
'success': '#fff',
'error': '#fff',
'info': '#fff',
},
'ch-support-1': 'rgba(46, 117, 163, 0.08)',
'ch-support-2': '#f5f8fa',
'ch-support-3': 'rgba(46, 117, 163, 0.5)',
'ch-support-4': '#244d67',
'ch-support-5': '#e06410',
'ch-support-6': '#faf7f5',
'ch-warning': {
DEFAULT: '#eddf0e',
'dark': '#dacc0a',
'light': '#ffef1f',
},
'ch-success': {
DEFAULT: '#a4dc2d',
'dark': '#91c91a',
'light': '#b7ef3f',
},
'ch-error': {
DEFAULT: '#ef3e3e',
'dark': '#dc2b2b',
'light': '#ff4f4f',
},
'ch-info': {
DEFAULT: '#3e9aef',
'dark': '#2b87dc',
'light': '#4fadff',
}
}
},
},
variants: {
extend: {
opacity: ['disabled'],
},
},
plugins: [
require('@tailwindcss/line-clamp'),
require('@tailwindcss/forms'),
require("@tailwindcss/typography")
],
}