-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
58 lines (58 loc) · 1.35 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./src/components/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
fontFamily: {
sans: ['var(--font-nunito)'],
},
colors: {
input: {
600: '#232129',
},
gray: {
100: '#EAEAEB',
200: '#D6D5D7',
300: '#ADABAF',
400: '#999591', // Gray
500: '#666360', // Gray Hard
600: '#312E38', // Background
700: '#27252D',
800: '#1D1C22',
900: '#28262E', // Black Medium
1000: '#0A090B',
},
orange: {
100: '#FFF4E6',
200: '#FFE9CC',
300: '#FFD399',
400: '#FFBC66',
500: '#FFA633',
600: '#FF9000',
700: '#CC7300',
800: '#995600',
900: '#663A00',
1000: '#331D00',
},
white: {
100: '#FEFDFD',
200: '#FDFBFA',
300: '#FBF8F6',
400: '#F8F4F1',
500: '#F6F1ED',
600: '#F4EDE8',
700: '#C3BEBA',
800: '#928E8B',
900: '#3E3B47', // Shape
1000: '#312F2E',
},
},
},
},
plugins: [],
}