-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtailwind.config.js
85 lines (84 loc) · 2.28 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
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
/** @type {import('tailwindcss').Config} */
const defaultTheme = require('tailwindcss/defaultTheme');
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
keyframes: {
'spin-once': {
'0%': { transform: 'rotate(0deg)' },
'100%': { transform: 'rotate(360deg)' },
},
},
animation: {
'spin-once': 'spin-once 0.5s ease-in-out',
},
fontFamily: {
bebas: ['var(--font-bebas)'],
electrolize: ['var(--font-electrolize)'],
racesport: ['var(--font-racesport)'],
},
backgroundImage: {
'custom-radial':
'radial-gradient(circle, rgba(0, 0, 0, 0.8) 49%, rgba(0, 0, 0, 0.8) 100%)',
},
colors: {
primary: '#58DCDE',
'neutral-100': '#CECECE',
'neon-orange': '#FD8D26',
'dark-81': 'rgba(0, 0, 0, 0.81)',
'neon-green': '#0EEB81',
'neon-purple': '#FC62FF',
'neon-green-yellow': '#AAFF3E',
'neon-blue': '#0ADFDB',
'light-blue': 'rgba(20, 150, 130, 0.74)',
'light-dark': 'rgba(0, 0, 0, 0)',
'light-green': 'rgba(10, 150, 80, 0.79)',
'light-orange': 'rgba(200, 100, 30, 0.78)',
'light-purple': 'rgba(200, 50, 200, 0.78)',
blue: 'rgba(5, 8, 10, 0.80)',
green: 'rgba(8, 18, 20, 0.90)',
},
container: {
center: true,
padding: {
DEFAULT: '1.25rem',
},
},
fontSize: {
...defaultTheme.fontSize,
// 24px/400
large: [
'1.5rem',
{
fontWeight: '400',
},
],
// 24px/400
'extra-large': [
'4rem',
{
fontWeight: '400',
},
],
},
screens: {
xs: '490px',
...defaultTheme.screens,
'2xl': '1440px',
'3xl': '1536px',
},
boxShadow: {
'custom-green': '3.98px -2.65px 6.5px rgba(53, 255, 231, 0.4)',
'custom-forge': '6px -4px 9.8px rgba(253, 141, 38, 0.41)',
'custom-purple': '6px -4px 9.8px rgba(252, 98, 255, 0.41)',
'custom-blue': '6px -4px 9.8px rgba(53, 255, 231, 0.41)',
},
},
},
plugins: [],
};