This repository has been archived by the owner on Dec 14, 2023. It is now read-only.
forked from Open-Attestation/verify-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
92 lines (90 loc) · 2.36 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
const defaultTheme = require("tailwindcss/defaultTheme");
/** @type {import('tailwindcss/tailwind-config').TailwindConfig} */
module.exports = {
content: ["./pages/**/*.{js,ts,jsx,tsx,mdx}", "./components/**/*.{js,ts,jsx,tsx}"],
theme: {
container: {
...defaultTheme.container,
center: true,
padding: {
DEFAULT: "1rem",
},
},
screens: {
xs: "400px",
sm: "640px",
md: "768px",
lg: "1024px",
xl: "1280px",
},
listStyleType: {
...defaultTheme.listStyleType,
a: "lower-latin",
},
extend: {
colors: {
primary: {
DEFAULT: "rgba(78, 115, 182, 1)",
dark: "rgba(54, 81, 130, 1)",
},
secondary: {
DEFAULT: "rgba(117, 201, 200, 1)",
},
black: {
DEFAULT: "rgba(79, 79, 79, 1)",
},
background: {
DEFAULT: "rgba(255, 253, 250, 1)",
blue: "rgba(250, 249, 251, 1)",
},
},
fontFamily: {
sans: ["Roboto", ...defaultTheme.fontFamily.sans],
heading: ["Manjari", ...defaultTheme.fontFamily.sans],
},
},
},
plugins: [],
};
// module.exports = {
// content: ["./pages/**/*.{js,ts,jsx,tsx}", "./components/**/*.{js,ts,jsx,tsx}"],
// theme: {
// extend: {
// colors: {
// transparent: "transparent",
// current: "currentColor",
// primary: { DEFAULT: "rgba(221, 107, 32, 1)" },
// blue: "rgba(32, 146, 221, 1)",
// green: "rgba(5, 160, 156, 1)",
// yellow: "rgba(249, 220, 92, 1)",
// gray: { DEFAULT: "rgba(247, 247, 247, 1)" },
// black: { light: "rgba(42, 45, 52, 0.5)", DEFAULT: "rgba(42, 45, 52, 1)" },
// },
// },
// fontFamily: {
// sans: ["Open Sans", ...fontFamily.sans],
// serif: fontFamily.serif,
// mono: fontFamily.mono,
// heading: ["Poppins", ...fontFamily.sans],
// branding: ["Lilita One", ...fontFamily.sans],
// },
// container: {
// center: true,
// screens: {
// sm: "640px",
// md: "768px",
// },
// padding: {
// DEFAULT: "1rem",
// sm: "2rem",
// lg: "4rem",
// xl: "5rem",
// "2xl": "6rem",
// },
// },
// },
// variants: {
// extend: {},
// },
// plugins: [require("@tailwindcss/line-clamp")],
// };