-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
executable file
·63 lines (61 loc) · 1.25 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
57
58
59
60
61
62
63
import type { Config } from 'tailwindcss'
const config: Config = {
//darkMode: 'class',
content: [
'./src/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
screens: {
'mobile': '640px',
'tablet': '768px',
'laptop': '1024px',
'desktop': '1280px',
},
fontFamily: {
f1: ['var(--font-f1)'],
f2: ['var(--font-f2)'],
f3: ['var(--font-f3)'],
},
colors: {
white: '#ffffffd0',
black: '#000000e0',
grey: '#aaaaaae0',
},
extend: {
colors: {
test: {
1: '#FF000030',
2: '#00FF0030',
3: '#0000FF30'
},
primary: "#FF865B",
secondary: "#ccd6f6",
accent: "#ff7949",
neutral: {
DEFAULT: "#1b262c",
content: "#94a0a9",
},
base: {
100: "#121c22",
200: "#0e171e",
300: "#091319",
content: "#9fb9d0",
},
title: "#ccd6f6",
orange: "#ff7949",
border: "#1f2937",
},
keyframes: {
blink: {
'0%, 100%': { opacity: '1' },
'50%': { opacity: '0' },
},
},
animation: {
blink1s: 'blink 1s infinite',
},
},
},
plugins: [],
}
export default config