generated from HackDavis/nextjs-app-router-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
56 lines (55 loc) · 1.87 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
import type { Config } from 'tailwindcss';
export default {
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
colors: {
'background-light': 'var(--background-light)',
'background-dark': 'var(--background-dark)',
'foreground-light': 'var(--foreground-light)',
'foreground-dark': 'var(--foreground-dark)',
'highlight-blue': 'var(--highlight-blue)',
'highlight-yellow': 'var(--highlight-yellow)',
'text-dark': 'var(--text-dark)',
'text-light': 'var(--text-light)',
'sand-background-dark': 'var(--sand-background-dark)',
'sand-background-light': 'var(--sand-background-light)',
'sky-background': 'var(--sky-background)',
'sea-background': 'var(--sea-background)',
'water-background': 'var(--water-background)',
'grass-background-dark': 'var(--grass-background-dark)',
'grass-background-light': 'var(--grass-background-light)',
'sand-text-color': 'var(--sand-text-color)',
},
spacing: {
edge: 'var(--edge-space)',
'landing-text-space-left': 'var(--landing-text-space-left)',
'landing-text-space-right': 'var(--landing-text-space-right)',
},
fontFamily: {
metropolis: 'var(--font-metropolis)',
montserrat: 'var(--font-montserrat)',
inter: 'var(--font-inter)',
jakarta: 'var(--font-jakarta)',
},
animation: {
'spin-slow': 'spin-from-center 30s linear infinite',
},
keyframes: {
'spin-from-center': {
'0%': { transform: 'rotate(360deg)' },
'100%': { transform: 'rotate(0deg)' },
},
},
screens: {
'break-625': '625px',
'break-400': '400px',
},
},
},
plugins: [],
} satisfies Config;