-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
31 lines (31 loc) · 883 Bytes
/
tailwind.config.js
File metadata and controls
31 lines (31 loc) · 883 Bytes
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
colors: {
'light-green': '#428e92',
'main-green': '#006064',
'dark-green': '#00363a',
'lighter-green': '#eaf3f3',
'lightest-green': '#ffffff',
'light-red': '#ff616f',
'main-red': '#ff1744',
'dark-red': '#c4001d',
'lighter-red': '#ffaaa3',
'lightest-red': '#ffccc2',
'dark': '#2b303a',
},
fontFamily: {
'sans': ['var(--font-red-hat-text)', 'sans'],
'serif': ['var(--font-ovo)', 'serif'],
'mono': ['var(--font-fira-code)', 'monospace'],
'display': ['var(--font-red-hat-display)'],
'body': ['var(--font-red-hat-text)', 'sans-serif'],
},
},
plugins: [],
}