-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
62 lines (62 loc) · 1.48 KB
/
Copy pathtailwind.config.js
File metadata and controls
62 lines (62 loc) · 1.48 KB
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
53
54
55
56
57
58
59
60
61
62
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
// Or if using `src` directory:
'./src/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
fontFamily: {
sans: ['var(--font-bahnschrift)', 'sans-serif'],
display: ['var(--font-bahnschrift)', 'sans-serif'],
body: ['var(--font-bahnschrift)', 'sans-serif'],
castelar: ['var(--font-castelar)', 'serif'],
},
extend: {
colors: {
white: '#FAFFFC',
currentColor: '#ce0c00',
darkBg: '#1A1B1E',
darkText: '#C1C2C5',
red: {
100: '#ffe3e0',
200: '#ffb5b1',
300: '#ff867f',
400: '#ff564c',
500: '#ff271a',
600: '#ce0c00',
700: '#b40700',
800: '#810300',
900: '#500000',
DEFAULT: '#ce0c00',
},
yellow: {
100: '#fef7e3',
200: '#fde7ac',
300: '#fbd775',
400: '#f9c73e',
500: '#f8b707',
600: '#c18e06',
700: '#8a6504',
800: '#533d02',
900: '#1c1401',
DEFAULT: '#f8b707',
},
},
},
},
darkMode: 'class',
plugins: [
function ({ addUtilities }) {
const newUtilities = {
'.no-scrollbar::-webkit-scrollbar': {
display: 'none',
},
'.no-scrollbar': {
'-ms-overflow-style': 'none',
'scrollbar-width': 'none',
},
};
addUtilities(newUtilities);
},
],
};