-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
51 lines (50 loc) · 1.52 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import type { Config } from "tailwindcss";
const config: Config = {
darkMode: "class",
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
screens: {
sm: "480px",
md: "768px",
lg: "1024px",
xl: "1280px",
xxl: "1440px",
},
extend: {
backgroundImage: {
"profile-banner":
"url('https://images.unsplash.com/photo-1586892478377-bb79da0a70c2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80')",
"default-profile":
"url('https://images.unsplash.com/photo-1544502062-f82887f03d1c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&ar=1:1&fit=crop&w=175&q=80')",
},
colors: {
"light-one": "#fafafa",
"light-two": "#e4e5f1",
"light-three": "#d2d3db",
"light-four": "#9394a5",
"light-five": "#484b6a",
"dark-one": "#161722",
"dark-two": "#25273c",
"dark-three": "#cacde8",
"dark-four": "#e4e5f1",
"dark-five": "#777a92",
"purple-one": "#f3e8ff",
"purple-two": "#a78bfa",
"blue-one": "#dbeafe",
"blue-two": "#60a5fa",
"red-one": "#fee2e2",
"red-two": "#FF6B6B",
"yellow-one": "#fef9c3",
"yellow-two": "#facc15",
"green-one": "#dcfce7",
"green-two": "#4ade80",
},
},
},
plugins: [],
};
export default config;