-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
41 lines (39 loc) · 984 Bytes
/
tailwind.config.ts
File metadata and controls
41 lines (39 loc) · 984 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
34
35
36
37
38
39
40
41
import type { Config } from 'tailwindcss'
import colors from 'tailwindcss/colors'
const config: Config = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/newComponents/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
plugins: [],
theme: {
colors: {
...colors,
background: 'oklch(98.7% 0.007 246.71)',
black: 'oklch(20.59% 0.091 260.03/ <alpha-value>)',
brand: 'oklch(64.4% 0.211 289 / <alpha-value>)',
},
extend: {
animation: {
'reverse-spin':
'reverse-spin 1.5s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite',
},
boxShadow: {
outline: '0 0 0 4.1px',
},
keyframes: {
'reverse-spin': {
'0%': {
transform: 'rotate(0)',
},
'100%': {
transform: 'rotate(-360deg)',
},
},
},
},
},
}
export default config