-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
60 lines (60 loc) · 1.23 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./**/*.{html,js}"],
theme: {
colors: {
transparent: 'transparent',
current: 'currentColor',
black: '#000000',
// white: '#ffffff',
white: {
100: '#F9F9FF',
DEFAULT: '#e1e1e6',
900: '#B3B3B7'
},
grey: {
100: '#32323E',
DEFAULT: '#1e1e23',
900: '#151518',
},
yellow: {
100: "#FDCF70",
200: "#F9BF46",
DEFAULT: "#EDAD28",
400: "#B8820F",
900: "#865B00",
},
pink: {
100: '#FF88D1',
DEFAULT: '#FF71CE',
900: '#E064B7',
},
cyan: {
100: '#54E6FD',
DEFAULT: '#00DDFF',
900: '#01B2D6',
},
green: {
100: '#30FFB3',
DEFAULT: '#05FFA1',
900: '#05D68E',
},
purple: {
100: '#CA7FFF',
DEFAULT: '#B967FF',
900: '#A355E2',
},
red: {
100: '#FF8B8B',
DEFAULT: '#FF6B6B',
900: '#E25B5B',
},
},
extend: {
fontFamily: {
'grotesk': ['Schibsted Grotesk', 'sans-serif'],
'fira-sans': ['Fira Sans', 'sans-serif']
}},
},
plugins: [],
}