-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
42 lines (40 loc) · 946 Bytes
/
tailwind.config.ts
File metadata and controls
42 lines (40 loc) · 946 Bytes
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
import type { Config } from 'tailwindcss';
const config: Config = {
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
colors: {
"blue": "#2463EB",
"blue-secondary": "#93C5FD",
"green": "#1FA95D",
"green-secondary": "#00ff73",
"purple": "#C084FC",
"dark-gray": "#1F2937",
"light-gray": "#8F949B",
"white": "#FFFFFF",
"black": "#000000",
"red": "#EF4444"
},
fontSize: {
"sm": "15px",
"md": "20px",
"lg": "25px",
"xl": "30px",
"2xl": "40px",
},
extend: {
fontFamily: {
roobert: ['var(--font-roobert)'],
},
backgroundImage: {
shapes:
"radial-gradient(circle, rgba(0,0,0,0.0) 0%, rgba(0,0,0,0) 0%), url('../public/shapesBg.svg')",
},
},
},
plugins: [],
};
export default config;