-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathtailwind.config.js
More file actions
65 lines (62 loc) · 1.66 KB
/
Copy pathtailwind.config.js
File metadata and controls
65 lines (62 loc) · 1.66 KB
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
main: '#060D16',
secondary: '#061018',
third: '#151e29',
inputcolor: '#1e2c3c',
black: '#000000',
highlight: '#fffffff5',
bcolor: '#15202C',
// text
txtfade: '#858789',
light: 'var(--color-light)',
green: '#07956B',
red: '#C9243A',
redbright: '#ff344e',
orange: '#f77f00',
blue: '#3a86ff',
},
fontSize: {
xxs: '0.6rem', // Extra Extra Small
xs: '0.65rem', // Extra Small
sm: '0.75rem', // Small
base: '0.875rem', // Base
lg: '1rem', // Large
xl: '1.125rem', // Extra Large
'2xl': '1.25rem', // 2 Extra Large
'3xl': '1.5rem', // 3 Extra Large
'4xl': '1.875rem', // 4 Extra Large
'5xl': '2.25rem', // 5 Extra Large
'6xl': '2.625rem', // 6 Extra Large
},
},
keyframes: {
'text-shimmer': {
from: { backgroundPosition: '0 0' },
to: { backgroundPosition: '-200% 0' },
},
},
animation: {
'text-shimmer': 'text-shimmer 4s ease-out infinite alternate',
},
font: {
mono: ['Roboto Mono', 'monospace'],
regular: ['regular', 'sans-serif'],
boldy: ['boldy', 'sans-serif'],
special: ['special', 'sans-serif'],
archivo: ['Archivo Black', 'sans-serif'],
},
fontFamily: {
regular: ['regular'],
special: ['special'],
boldy: ['boldy'],
mono: 'Roboto Mono',
archivo: 'Archivo Black',
},
},
plugins: [],
};