-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
36 lines (36 loc) · 979 Bytes
/
tailwind.config.ts
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
"nav-border": "#EBEAEA",
"light-white": "#FAFAFB",
"light-white-100": "#F1F4F5",
"light-white-200": "#d7d7d7",
"light-white-300": "#F3F3F4",
"light-white-400": "#E2E5F1",
"light-white-500": "#E4E4E4",
gray: "#4D4A4A",
"gray-100": "#3d3d4e",
"black-100": "#252525",
"primary-purple": "#9747FF",
"gray-50": "#D9D9D9",
},
boxShadow: {
menu: "0px 159px 95px rgba(13,12,34,0.01), 0px 71px 71px rgba(13,12,34,0.02), 0px 18px 39px rgba(13,12,34,0.02), 0px 0px 0px rgba(13,12,34,0.02)",
},
screens: {
xs: "400px",
},
maxWidth: {
"10xl": "1680px",
},
},
},
plugins: [],
};