-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
39 lines (38 loc) · 1.12 KB
/
tailwind.config.js
File metadata and controls
39 lines (38 loc) · 1.12 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
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
gridTemplateColumns: {
13: 'repeat(13, minmax(0, 1fr))',
},
colors: {
gray0: '#3F3F3F',
gray1: '#BEBEBE',
gray2: '#D9D9D9',
gray3: '#EAEAEA',
gray4: '#F9F9F9',
myorange: '#F58115',
myblue: '#0A6DE2',
primary:"#6990F5",
dark: '606060',
red: '#FF0000',
secondary: '#85A7FF',
},
fontSize: {
title: '24px',
subtitle: '18px',
body: '14px',
light: '12px',
btn: '10px',
},
backgroundImage: {
gradient:
'linear-gradient(to right, #1D1D1D 0%, #4D4D4D 70%, transparent 95% )',
smashgradient: 'linear-gradient(90deg, #1D1D1D 51.99%, rgba(77, 77, 77, 0.75) 79.02%, rgba(217, 217, 217, 0.00) 96.49%)',
imagegradient: 'linear-gradient(270deg, rgba(0, 0, 0, 0.00) 22.59%, rgba(0, 0, 0, 0.20) 112.81%), url(${SmashImage}), lightgray 50% / cover no-repeat',
},
},
},
plugins: [],
};