-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
57 lines (57 loc) · 1.36 KB
/
tailwind.config.js
File metadata and controls
57 lines (57 loc) · 1.36 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
/** @type {import('tailwindcss').Config} */
module.exports = {
// darkMode removed — site is light-first
content: [
'./src/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
colors: {
brand: {
green: '#D2FFB8',
red: '#FF4C4C',
grey: '#777777',
darkgrey: '#1D1A1B',
'grey-medium': '#B4B4B4',
'grey-light': '#F0F0F0',
black: '#000000',
white: '#FFFFFF',
},
go: {
light: '#D2FFB8',
DEFAULT: '#D2FFB8',
dark: '#b8e6a0',
},
fixfirst: {
light: '#FF6B6B',
DEFAULT: '#FF4C4C',
dark: '#E04343',
},
nogo: {
light: '#FF4C4C',
DEFAULT: '#FF4C4C',
dark: '#E04343',
},
},
fontFamily: {
sans: ['"DM Sans"', 'system-ui', 'sans-serif'],
},
animation: {
'pulse-slow': 'pulse 3s ease-in-out infinite',
'fade-in': 'fadeIn 0.5s ease-out',
'slide-up': 'slideUp 0.5s ease-out',
},
keyframes: {
fadeIn: {
'0%': { opacity: '0' },
'100%': { opacity: '1' },
},
slideUp: {
'0%': { opacity: '0', transform: 'translateY(20px)' },
'100%': { opacity: '1', transform: 'translateY(0)' },
},
},
},
},
plugins: [],
};