-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
43 lines (43 loc) · 1.12 KB
/
tailwind.config.js
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
/** @type {import('tailwindcss').Config} */
export const content = ['./index.html', './src/**/*.{js,jsx,ts,tsx}'];
export const theme = {
extend: {
fontFamily: {
inter: ['Inter', 'sans-serif'],
instrument: ['Instrument Serif', 'serif'],
jetbrainsmono: ['JetBrains Mono', 'monospace'],
},
colors: {
blurple: '#3643FC',
blurpleopa: 'rgba(54, 67, 252, 0.4)',
customblack: '#0d0d0d',
customgray: '#262626',
customwhite: '#cccccc',
customlightgray: '#3e3e3e',
},
boxShadow: {
glowblurple: '0px 0px 2000px -7px rgba(54,67,252,0.7)',
glowblurplesmall: '0px 0px 130px -7px rgba(54,67,252,0.9)',
glowblurpleextrasmall: '0px 0px 40px -7px rgba(54,67,252,0.9)',
glowcustomblack: '-41px 30px 35px 23px rgba(13,13,13,1)',
glowcustomblacksmall: '-56px -1px 40px -8px rgba(13,13,13,1)',
},
animation: {
shine: "shine var(--duration) infinite linear",
},
keyframes: {
shine: {
"0%": {
"background-position": "0% 0%",
},
"50%": {
"background-position": "100% 100%",
},
to: {
"background-position": "0% 0%",
},
},
},
},
};
export const plugins = [];