-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
49 lines (48 loc) · 932 Bytes
/
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
/** @type {import('tailwindcss').Config} */
const colors = require('tailwindcss/colors')
module.exports = {
future: {
removeDeprecatedGapUtilities: true
},
content: [
// Example content paths...
'./public/**/*.html',
'./src/**/*.{js,jsx,ts,tsx}',
],
theme: {
fill: (theme) => ({
red: theme('colors.red.primary')
}),
colors: {
white: '#ffffff',
blue: {
medium: '#005c98'
},
black: {
light: '#262626',
faded: '#00000059',
hard: '#000000'
},
gray: {
base: '#616161',
background: '#fafafa',
primary: '#dbdbdb'
},
red: {
primary: '#ed4956'
},
pink: colors.pink,
yellow: colors.yellow,
redhard: colors.red,
}
},
variants: {
extend: {
display: ['group-hover']
}
},
plugins: [
require('tailwind-scrollbar-hide')
// ...
]
};