-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
58 lines (57 loc) · 1.32 KB
/
tailwind.config.js
File metadata and controls
58 lines (57 loc) · 1.32 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
const colors = require('tailwindcss/colors');
module.exports = {
content: ["./src/**/*.{html,js}"],
darkMode: 'class', // or 'media' or 'class'
theme: {
extend: {
colors: {
blue: {
150: '#111111'
},
'ayyblue-black': {
DEFAULT: '#111111',
'50': '#848484',
'100': '#777777',
'200': '#5E5E5E',
'300': '#444444',
'400': '#2B2B2B',
'500': '#111111',
'600': '#000000',
'700': '#000000',
'800': '#000000',
'900': '#000000'
},
'ayyblue-white': {
DEFAULT: '#FFFFFF',
'50': '#eaeaea',
'100': '#CCCCCC',
'200': '#B5B5B5',
'300': '#A6A6A6',
'400': '#878787',
'500': '#666666',
'600': '#474747',
'700': '#2E2E2E',
'800': '#1F1F1F',
'900': '#0F0F0F'
},
'ayyblue-blue': {
DEFAULT: '#5050E4',
'50': '#FFFFFF',
'100': '#FFFFFF',
'200': '#D5D5F8',
'300': '#A8A8F2',
'400': '#7C7CEB',
'500': '#5050E4',
'600': '#2424DD',
'700': '#1C1CB2',
'800': '#151586',
'900': '#0E0E5A'
},
}
},
},
variants: {
extend: {},
},
plugins: [],
}