-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
41 lines (41 loc) · 1015 Bytes
/
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
black: "#050201",
black_100: "#131622",
black_200: "#616161",
black_300: "#141922",
black_400: "#161D26",
black_500: "#1C1E28",
black_600: "#4D4D52",
white: "#FFFFFF",
whiteOpacity10: "rgba(255, 255, 255, 0.1)",
white_100: "#F2F2F2",
gray_100: "#818181",
gray_200: "#848484",
gray_300: '#A4A8AB',
gray_400: '#969696',
gray_500: "#9F9F9F",
gray_600: "#4E4F54",
success: "#08C077",
red: "#EF4444",
blue: "#9199B1",
blue_100: '#2E323D',
pink: "#F63966",
yellow: '#C19A27'
},
fontFamily: {
poppins: ['var(--font-poppins)'],
},
},
},
plugins: [
],
};