-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
54 lines (50 loc) · 1.2 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
/** @type {import('tailwindcss').Config} */
const COLOR_DARK = "#1E1E1E"
const COLOR_LIGHT = "#FFFFFF"
const COLOR_PRIMARY = "#2D5A60"
const COLOR_SECONDARY = "#64EbDE"
module.exports = {
content: ["./src/**/*.{html,js,jsx,ts,tsx}"],
darkMode: 'class',
theme: {
extend: {
colors: {
inherit: 'inherit',
transparent: 'transparent',
primary: {
DEFAULT: COLOR_PRIMARY,
},
secondary: {
DEFAULT: COLOR_SECONDARY
},
dark: {
DEFAULT: COLOR_DARK
},
light: {
DEFAULT: COLOR_LIGHT
},
background: {
DEFAULT: 'rgb(var(--color-background) / <alpha-value>)'
},
section: {
DEFAULT: 'rgb(var(--color-section) / <alpha-value>)'
},
card: {
DEFAULT: 'rgb(var(--color-card) / <alpha-value>)'
},
pop: {
DEFAULT: 'rgb(var(--color-pop) / <alpha-value>)'
},
overlay: {
DEFAULT: 'rgb(var(--color-overlay) / <alpha-value>)'
},
},
screens: {
'mouse_hover': { 'raw': '(hover: hover)' }
},
},
},
plugins: [
require('tailwind-scrollbar-hide'),
],
}