-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtailwind.config.js
More file actions
executable file
·45 lines (38 loc) · 973 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
executable file
·45 lines (38 loc) · 973 Bytes
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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
},
colors: {
'tertiary': '#1E2019', //for header and all
'secondary': '#141510', //for code area and output
'primary': '#238579', //greenish color
'customWhite': '#D6D6D6', //almost white
'green_hover': '#1b5e5a',
'slate': {
300: '#cbd5e1',
400: '#94a3b8',
700: '#334155'
},
'brown': 'rgba(87, 88, 83, 0.4)', //for border color
'white': '#ffff',
'black': '#000000',
'cyan': '#20B2AA',
'signup': '#52a2fb',
'signupBTN': '#185493',
'blue_hover': '#1434A4',
'red': '#dc143c',
'green': '#008000',
'dark-green': '#165049',
'Otp-page-color': '#b0bdfb',
'otp-button': '#1a7ccf',
'otp-hover': '#0808fe',
'explore-text': '#777a71',
}
},
plugins: [],
}