-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
48 lines (47 loc) · 1.01 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
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: {
neutral: {
100: "#1c1c1c",
200: "#f5f7fb",
},
purple: {
100: "#293264",
200: "#4d5b9e",
300: "#d6dbf5",
400: "#d8def0",
},
blue: "#dbebf9",
yellow: "#fffacc",
green: "#94d7a2",
red: "#f8bcbc",
},
fontFamily: {
inter: ["var(--font-inter)"],
karla: ["var(--font-karla)"],
},
screens: {
// => @media (min-width: 768px) { ... }
md: "768px",
// => @media (min-width: 1024px) { ... }
lg: "1024px",
// => @media (min-width: 1440px) { ... }
xl: "1440px",
},
extend: {
boxShadow: {
answer: "0 3px #d8def0",
btn: "0 5px #d8def0",
input: "0 4px #d8def0",
},
},
},
plugins: [],
};
export default config;