-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
55 lines (54 loc) · 1.28 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
52
53
54
55
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: {
extend: {
colors: {
"digitalent-green": {
DEFAULT: "#66B573",
light: "#D7E4DD",
},
"digitalent-gray": {
light: "#F2F2F2",
dark: "#131313",
},
"digitalent-yellow": {
DEFAULT: "#E7E248",
},
"digitalent-blue": {
DEFAULT: "#193B44",
},
"digitalent-mine": {
DEFAULT: "#363636",
},
},
screens: {
"2xl": "1536px",
"3xl": "1920px",
},
height: {
initial: "initial",
},
boxShadow: {
"all-sides":
"0 10px 25px 0 rgba(0, 0, 0, 0.17), 0 4px 7px 0 rgba(0, 0, 0, 0.0)",
},
},
fontFamily: {
sans: ["var(--font-inter)", "sans-serif"],
title: ["var(--font-stolzl)", "sans-serif"],
serif: ["var(--font-merriweather)", "serif"],
logo: ["var(--font-loew)", "sans-serif"],
},
},
plugins: [
require("@tailwindcss/forms"),
require("tailwind-scrollbar-hide"),
require("tailwindcss-animate"),
],
};
export default config;