-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
116 lines (116 loc) · 2.81 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
// Visit https://tailwindcss.com/docs/configuration#configuration-options for more info
module.exports = {
content: [
'./assets/**/*.{vue,js,css}',
'./components/**/*.{vue,js}',
'./layouts/**/*.vue',
'./pages/**/*.vue',
'./plugins/**/*.{js,ts}',
'./app.{vue,js}',
],
theme: {
maxWidth: {
240: '240px',
},
container: {
center: true,
padding: {
DEFAULT: '1.25rem',
lg: '2.5rem',
},
},
extend: {
colors: {
'community-blue': {
DEFAULT: '#0B96AB',
},
'community-turquoise': {
DEFAULT: '#00B199',
},
'community-magenta': {
DEFAULT: '#EE4D7A',
},
'community-fuchsia': {
DEFAULT: '#A066A9',
},
'community-orange': {
DEFAULT: '#F59232',
},
'community-purple': {
DEFAULT: '#4F72B7',
},
'community-white': {
DEFAULT: '#F9F9F9',
},
'community-grey': {
light: '#f7f6f5',
DEFAULT: '#efedec',
dark: '#aea79f',
text: '#808080',
},
'josa-grey': {
light: '#f5f5f5', // bg
DEFAULT: '#e3e7e9', // bg boxes
},
'community-red': {
DEFAULT: '#F26F54',
},
'community-green': {
DEFAULT: '#6DB981',
},
'community-black': {
DEFAULT: '#22292c', // mainly used for banners
darker: '#1a1f21', // mainly used for Navigation and footer background
text: '#333333',
},
grey90: '#e5e5e5',
},
padding: {
'15px': '15px',
},
opacity: {
90: '0.9',
80: '0.8',
70: '0.7',
},
maxWidth: {
'1/4': '25%',
'1/2': '50%',
},
lineHeight: {
golden: '1.1618',
18: '1.8',
},
width: {
175: '175px',
240: '240px',
},
height: {
'half-screen': '50vh',
},
inset: {
12: '3rem',
},
backgroundImage: {
homeHero: "url('/images/background.svg')",
'divider-slashes': "url('/images/divider-slash.svg')",
slashes: "url('/images/slashes.svg')",
editIcon: "url('/icons/edit.svg')",
editIconWhite: "url('/icons/edit-white.svg')",
trashIcon: "url('/icons/delete.svg')",
xIcon: "url('/icons/x.svg')",
addIcon: "url('/icons/add.svg')",
},
},
},
variants: {
margin: ['responsive', 'direction', 'last'],
padding: ['responsive', 'direction'],
textAlign: ['responsive', 'direction'],
fontSize: ['responsive', 'direction'],
lineHeight: ['responsive', 'direction'],
borderRadius: ['responsive', 'direction'],
inset: ['responsive', 'hover', 'focus', 'direction'],
},
plugins: [],
}