-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.cjs
100 lines (94 loc) · 2.63 KB
/
tailwind.config.cjs
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
95
96
97
98
99
100
// const colors = require('tailwindcss/colors');
const config = {
important: true,
future: {
purgeLayersByDefault: true,
removeDeprecatedGapUtilities: true,
},
mode: "jit",
content: [
"./src/**/*.{html,svelte,ts}",
],
theme: {
fontFamily: {
'sans': ['ui-sans-serif', 'system-ui'],
'serif': ['ui-serif', 'Georgia'],
'mono': ['ui-monospace', 'SFMono-Regular'],
'poppins': ['Poppins'],
'jetbrains-mono': ['Jetbrains Mono'],
'lato': ['Lato'],
'body': ['"Open Sans"'],
},
extend: {
colors: {
"brown-50": "#ddd3cd",
"brown-100": "#8c6f5f",
"brown-200": "#E8E3E0",
"brown-300": "#ddd3cd",
"brown-400": "#dbd1ca",
"brown-500": "#baa89d",
"brown-600": "#59483e",
"brown-700": "#8d7060",
"brown-800": "#55443A",
"brown-900": "#241D19",
"grad-100": "#DDD3CD",
"grad-400": "#BAA89D",
"grad-900": "#8D7060",
"spec-100": "#E8E3E0",
"cream-50": "#e5e2e0",
"primary-800":"#030527",
"primary-700":"#19195C",
"primary-600":"#2F2F7D",
"primary-500":"#4848BC",
"primary-400":"#6363F1",
"primary-300":"#7373FF",
"primary-200":"#A3AEFD",
"primary-100":"#C2C9FD",
"primary-50":"#EEEDFF",
"primary-light":"#F6F5FF",
"gray-800":"#",
"gray-700":"#",
"gray-600":"#",
"gray-500":"#",
"gray-400":"#",
"gray-300":"#",
"gray-200":"#",
"gray-100":"#",
},
screens: {
'half':{'min': '320px', 'max': '719px'},
'laptop':{'min': '720px', 'max': '1023px'},
'ipad':{'min': '1024px', 'max': '1279px'},
'desktop': {'min': '1280px', 'max': '1600px'},
'apple': {'min': '1601px', 'max': '2560px'},
'uw': {'min': '2561px'},
'tall': { 'raw': '(min-height: 1200px)' },
},
animation: {
type: 'type 2.7s ease-out .8s infinite alternate both',
},
keyframes: {
type: {
'0%': { transform: 'translateX(0ch)' },
'5%, 10%': { transform: 'translateX(1ch)' },
'15%, 20%': { transform: 'translateX(2ch)' },
'25%, 30%': { transform: 'translateX(3ch)' },
'35%, 40%': { transform: 'translateX(4ch)' },
'45%, 50%': { transform: 'translateX(5ch)' },
'55%, 60%': { transform: 'translateX(6ch)' },
'65%, 70%': { transform: 'translateX(7ch)' },
'75%, 80%': { transform: 'translateX(8ch)' },
'85%, 90%': { transform: 'translateX(9ch)' },
'95%, 100%': { transform: 'translateX(11ch)' },
},
},
boxShadow: {
'2xl': '4px 5px 1px rgba(194, 201, 253, 0.47)',
'3xl': '6px 7px 1px rgba(194, 201, 253, 0.47)',
'4xl': '15px 16px 1px rgba(194, 201, 253, 0.47)',
},
},
},
plugins: [require('@tailwindcss/typography')],
};
module.exports = config;