-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathtailwind.config.js
50 lines (50 loc) · 1.21 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
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: 'class',
content: [
"./src/**/*.{html,js,jsx,ts,tsx}",
'./node_modules/tw-elements/dist/js/**/*.js',
],
theme: {
extend: {
fontFamily: {
'lato': ['Lato', 'san-serif'],
'inter': ['Inter', 'san-serif'],
},
colors: {
'du-purple': {
100:'#5C456E',
200: '#E7E1F6',
300: '#EEEAF8',
500: '#6B26FF',
600: '#783D86',
700: '#6216F8',
800: '#9747FF'
},
'du-gray': '#F7FAFC',
'du-indigo': {
900: '#151A35',
},
'du-lightAqua': '#00FFFF',
'du-deepPurple': '#1E2445',
'du-lightPurple': '#C86DFF',
'du-charcoal-gray':'#4B4B4B',
'du-lightBlue':'#F1F6FE',
'du-darkBlue': '#4273D6',
'event-tags' : {
'conference': '#F6BAC5',
'training': '#A0EFEA',
'meetup': '#C9DC94',
'hackathon': '#5FA3C4',
'other': '#5675C3',
'webinar': '#E2B1FF',
'session': '#05BFB4',
'workshop': '#E1B1FF',
},
},
},
},
plugins: [
require('tw-elements/dist/plugin')
],
}