-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
105 lines (102 loc) · 2.37 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{js,ts,jsx,tsx,mdx}'],
darkMode: 'class',
theme: {
extend: {
fontFamily: {
sans: "'Manrope', sans-serif",
},
fontSize: {
tiny: '.65625rem',
},
spacing: {
25: '6.5rem',
},
height: {
45: '11.93rem',
},
width: {
65: '16.5rem',
},
colors: {
transparent: 'transparent',
current: 'currentColor',
black: {
DEFAULT: '#1B1B1B',
200: '#1F2228',
300: '#121212',
500: '#171717',
600: '#0d0d0d',
},
white: '#fff',
blue: '#21325b',
theme: '#000c00',
button: '#4C9DDF',
'warning-light': '#EBC7C7',
'warning-dark': '#BF4F4F',
neargreen: {
DEFAULT: '#35C154',
200: '#338E7B',
},
nearblue: {
DEFAULT: '#F1F9FF',
600: '#4b5563',
700: '#9CA3AF',
},
neargray: {
DEFAULT: '#676767',
10: '#f3f3f3',
25: '#FAFAFA',
50: '#8E8E8E',
100: '#C5CDD5',
600: '#676767',
700: '#E9ECEF',
800: '#DEE2E6',
},
blue: {
DEFAULT: '#8adbc9',
100: '#b2fff1',
200: '#a8f9e7',
300: '#9eefdd',
400: '#94e5d3',
500: '#8adbc9',
600: '#80d1bf',
700: '#76c7b5',
800: '#6cbdab',
900: '#4CBDBB',
},
green: {
DEFAULT: '#0d494a',
100: '#357172',
200: '#2b6768',
250: '#31766A',
300: '#215d5e',
400: '#175354',
500: '#0d494a',
600: '#033f40',
700: '#003536',
800: '#002b2c',
900: '#002122',
},
brightgreen: {
DEFAULT: '#36C054',
},
},
tableLayout: ['hover', 'focus'],
borderRadius: {
'4xl': '30px',
},
backgroundColor: {
'blue-900-15': 'rgba(76 ,189 ,187 ,0.15)',
},
// backgroundColor: ['dark'],
// textColor: ['dark'],
backgroundImage: (theme) => ({
'hero-pattern': "url('/images/wavey_fingerprint.png')",
'hero-pattern-dark': "url('/images/wavey_fingerprint_dark.png')",
}),
},
},
plugins: [],
};