-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
33 lines (31 loc) · 850 Bytes
/
Copy pathtailwind.config.ts
File metadata and controls
33 lines (31 loc) · 850 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
32
33
import { type Config } from 'tailwindcss';
const colors = require('tailwindcss/colors');
export default {
content: ['./src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
offwhite: '#faf9f6',
lotion: '#fbfcfd',
primary: colors.black,
secondary: colors.neutral[300],
primaryHighlight: colors.orange[400],
primaryLowlight: colors.orange[600],
borderColor: colors.neutral[200],
darkBorderColor: colors.neutral[600],
borderFocus: colors.neutral[300],
textInverse: colors.white,
textPrimary: colors.orange[600],
textSecondary: colors.neutral[500],
},
keyframes: {
shimmer: {
'100%': {
transform: 'translateX(100%)',
},
},
},
},
},
plugins: [],
} satisfies Config;