-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
52 lines (47 loc) Β· 1.13 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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
theme: {
minWidth: {
xs: '20rem',
sm: '24rem',
md: '28rem',
lg: '32rem',
xl: '36rem',
'2xl': '42rem',
'3xl': '48rem',
'4xl': '56rem',
'5xl': '64rem',
'6xl': '72rem'
},
},
fontFamily: {
'raleway': ['Raleway', 'sans-serif'],
},
colors: {
//Stellar colors (for navbar, etc)
"stellar-icon-color": "#BFBFBF",
"stellar-blue": "#0B103D",
"stellar-white": "#EDF0F7",
"stellar-grey": "#565555",
"stellar-text": "000000a3",
//strong colors
"strong-blue": "#14162E",
"strong-red": "#Eb2828",
'purple-strong': '#763DF2',
//light colors
"light-White": "#EDF0F7",
"light-yellow": "#F9B742",
"light-blue": "#4461F2",
"light-green": "#48BC5E",
"light-red": "#EF4545",
'purple-light': '#C364FF',
},
},
},
}