-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
59 lines (57 loc) · 1.34 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
56
57
58
59
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: {
simpleblue: "#0C5BC6",
lightsteelblue: "rgba(198, 222, 255, 0.1)",
"text-mid-grey": "#5e587a",
"text-purple-haze": "#494369",
royalblue: "#0c5bc6",
"text-bright-grey": "#332c5c",
whitesmoke: "#f5f5f5",
featureLinkBorder: "#EBEBF0",
cardBlue: "rgb(41,63,214)",
},
boxShadow: {
sd: "shadow-[5px_5px_15px_rgba(0,_0,_0,_0.1),_-5px_-5px_15px_rgba(0,_0,_0,_0.1)_inset] ",
},
},
},
plugins: [],
};
export default config;
// /** @type {import('tailwindcss').Config} */
// module.exports = {
// content: [
// "./pages/**/*.{js,ts,jsx,tsx}",
// "./components/**/*.{js,ts,jsx,tsx}",
// ],
// theme: {
// extend: {
// colors: {
// white: "#fff",
// gainsboro: "rgba(229, 229, 229, 0.5)",
// royalblue: "#0c5bc6",
// gray: "#242331",
// },
// spacing: {},
// fontFamily: {
// nunito: "Nunito",
// "nunito-sans": "'Nunito Sans'",
// },
// },
// fontSize: {
// lg: "1.13rem",
// inherit: "inherit",
// },
// },
// corePlugins: {
// preflight: false,
// },
// };