-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
39 lines (37 loc) · 929 Bytes
/
tailwind.config.ts
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
import type { Config } from 'tailwindcss';
const config: Config = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
colors: {
'lightest': 'rgb(255, 255, 255)',
'lighter': 'rgb(202, 217, 144)',
'light': 'rgb(140, 152, 94)',
'dark': 'rgb(70, 79, 35)',
'darker': 'rgb(34, 42, 2)',
'darkest': 'rgb(23, 26, 13)',
},
fontFamily: {
display: ['var(--font-mono)', 'Roboto Mono', 'Courier New', 'monospace'],
body: ['var(--font-sans)', 'Inter', 'Helvetica', 'sans-serif'],
},
fontWeight: {
thin: '300',
normal: '400',
bold: '500',
extrabold: '600',
},
extend: {
transitionDelay: {
'400': '400ms',
'600': '800ms',
'900': '900ms',
},
},
},
plugins: [],
};
export default config;