-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
78 lines (78 loc) · 1.58 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: "class",
content: [
"./app/**/*.{js,ts,jsx,tsx}",
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
screens: {
sm: "640px",
md: "768px",
lg: "1024px",
xl: "1280px",
"2xl": "1536px",
},
colors: {
html: '#E44D26',
css: '#264DE4',
javascript: '#F7DF1E',
react: '#61DAFB',
nextjs: '#000000',
tailwind: '#38B2AC',
git: '#F05032',
figma: '#6D28D9',
purple: {
50: "#F5F3FF",
100: "#EDE9FE",
200: "#DDD6FE",
300: "#C4B5FD",
400: "#A78BFA",
500: "#8B5CF6",
600: "#7C3AED",
700: "#6D28D9",
800: "#5B21B6",
900: "#4C1D95",
},
neutral: {
50: "#FAFAFA",
100: "#F5F5F5",
200: "#E5E5E5",
300: "#D4D4D4",
400: "#A3A3A3",
500: "#737373",
600: "#525252",
700: "#404040",
800: "#262626",
900: "#171717",
},
},
fontSize: {
"2xs": "0.75rem",
xs: "0.875rem",
sm: "1rem",
base: "1.125rem",
lg: "1.25rem",
xl: "1.5rem",
"2xl": "1.75rem",
"3xl": "2rem",
"4xl": "3rem",
"5xl": "3.5rem",
},
extend: {
fontFamily: {
display: ["Sora", "sans-serif"],
body: ["Inter", "sans-serif"],
},
spacing: {
24: "1.5rem",
120: "7.5rem",
},
borderRadius: {
default: "0.3125rem",
},
},
},
plugins: [],
};