-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
51 lines (50 loc) · 1.37 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";
import { fontFamily } from "tailwindcss/defaultTheme";
const config: Config = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
mode: "jit",
theme: {
boxShadow: {
sm: "0 1px 0 rgba(4,4,5,0.2),0 1.5px 0 rgba(6,6,7,0.05),0 2px 0 hsl(0 calc( 1 * 0%) 0.8% / 0.05)",
md: "0 4px 4px hsl(0 calc( 1 * 0%) 0% / 0.16)",
lg: "0 8px 16px hsl(0 calc( 1 * 0%) 0% / 0.24)",
},
extend: {
backgroundImage: {
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
"gradient-conic":
"conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
},
colors: {
brand: "#5865F2",
gray: {
50: "#ECEDEE",
100: "#DCDDDE",
200: "#B9BBBE",
300: "#8E9297",
400: "#72767D",
500: "#5C6067",
550: "#4f545C",
600: "#464950",
700: "#36393F",
800: "#2F3136",
900: "#202225",
},
},
fontFamily: {
robo: ["Roboto", "Open Sans", ...fontFamily.sans],
title: ["var(--font-montserrat)"],
},
fontWeight: {
normal: "400",
bold: "700",
},
},
},
plugins: [require("@tailwindcss/forms")],
};
export default config;