-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
42 lines (42 loc) · 1.08 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
const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
content: [
"./public/**/*.html",
"./lib/**/*.{js,jsx,ts,tsx}",
"./utils/**/*.{js,jsx,ts,tsx}",
"./pages/**/*.{js,jsx,ts,tsx}",
"./layouts/**/*.{js,jsx,ts,tsx}",
"./components/**/*.{js,jsx,ts,tsx}"
],
darkMode: 'class',
theme: {
extend: {
colors: {
'tomato-light': '#FFFFFF',
'tomato-light-secondary': '#EFF3F3',
'tomato-dark': '#222526',
'tomato-dark-slight': '#272B2C',
'tomato-dark-secondary': '#33383B',
'tomato-orange': '#F16506',
'tomato-orange-secondary': '#E77326',
'tomato-red': '#BD3207',
'tomato-red-secondary': '#7A3015',
},
fontFamily: {
rowdies: ['Rowdies'],
rubikglitch: ['Rubik Glitch'],
poppins: ['Poppins', ...defaultTheme.fontFamily.sans]
}
}
},
variants: {
scrollbar: ['dark']
},
plugins: [
require('@tailwindcss/line-clamp'),
require('tailwind-scrollbar'),
require("@tailwindcss/forms")({
strategy: 'className'
})
]
}