-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
94 lines (93 loc) · 2.11 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
import type { Config } from 'tailwindcss'
import colors from 'tailwindcss/colors'
export default {
darkMode: 'class',
content: ['./src/**/*.{js,ts,jsx,tsx,mdx}'],
future: {
hoverOnlyWhenSupported: true,
},
theme: {
rotate: {
'-180': '-180deg',
'-90': '-90deg',
'-45': '-45deg',
0: '0',
45: '45deg',
90: '90deg',
135: '135deg',
180: '180deg',
270: '270deg',
},
extend: {
fontFamily: {
header: ['Lato', 'sans-serif'],
content: ['Lato', 'sans-serif'],
},
colors: {
primary: {
DEFAULT: colors.blue[500],
100: '#382bf0',
200: '#5e43f3',
300: '#7a5af5',
400: '#9171f8',
500: '#a688fa',
600: '#ba9ffb',
},
secondary: {
DEFAULT: colors.blue[200],
light: colors.blue[400],
},
'mobile-menu': {
DEFAULT: '#0f141d',
light: colors.gray[100],
},
background: {
DEFAULT: '#03080f',
light: '#FFFFFF',
secondary: {
DEFAULT: '#112340',
light: colors.gray[100],
},
},
hovered: {
DEFAULT: '#153040',
light: '#ECECEC',
},
code: {
DEFAULT: '#6e768166',
light: '#e4e4e4',
},
},
screens: {
sm: '640px',
md: '768px',
lg: '1024px',
xl: '1280px',
'2xl': '1536px',
'3xl': '1920px',
'4xl': '2560px',
'5xl': '3840px',
},
animation: {
'meteor-effect': 'meteor 5s linear infinite',
},
keyframes: {
meteor: {
'0%': { transform: 'rotate(215deg) translateX(0)', opacity: '1' },
'70%': { opacity: '1' },
'100%': {
transform: 'rotate(215deg) translateX(-500px)',
opacity: '0',
},
},
},
},
},
plugins: [
require('tailwind-scrollbar-hide'),
require('tailwind-scrollbar')({ nocompatible: true }),
],
variants: {
scrollbar: ['rounded'],
},
} satisfies Config