-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
48 lines (48 loc) · 1.05 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{html,ts}",
"/node_modules/tw-elements/dist/js/**/*.js"
],
theme: {
extend: {
colors: {
"darkForest": "#002828",
"clover": "#004F4F",
"pine": "#007377",
"jungle": "#009B97",
"seafom": "#00C1C1",
"pistachio": "#B8E1DC",
"ice": "#E0F6F3",
"amarant": "#EF3F4C",
"salmon": "#FFCCCC",
"grey": {
300: '#282828',
200: '#6D6D6D',
100: '#8F8F8F'
},
"goldGrey": "#B1B1B1",
"Grey": {
100: '#D3D3D3',
200: '#E8E8E8',
300: '#F5F5F5'
},
"coconut": '#FAFAFA'
}
},
screens: {
'sm': '640px',
'md': '768px',
'lg': '1024px',
'xl': '1280px',
'2xl': '1563px',
'3xl': '1920px'
}
},
plugins: [
// require('@tailwindcss/forms'),
// require('@tailwindcss/typography'),
// require('flowbite/plugin')
require("tw-elements/dist/plugin")
],
}