-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
66 lines (62 loc) · 1.26 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
60
61
62
63
64
65
66
import type { Config } from "tailwindcss";
import colors from "tailwindcss/colors";
const config: Config = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
colors: {
transparent: "transparent",
current: "currentColor",
black: colors.black,
white: colors.white,
gray: colors.neutral,
red: colors.red,
yellow: colors.yellow,
green: colors.green,
blue: {
50: "#EDFCFF",
100: "#D6F6FF",
200: "#B5F2FF",
300: "#83ECFF",
400: "#48DFFF",
500: "#1EC4FF",
600: "#06A9FF",
700: "#0096FF", // Prewired logo hue
800: "#0872C5",
900: "#0D609B",
950: "#0E3A5D",
},
purple: {
50: "#FAF6FE",
100: "#F2EAFD",
200: "#E7D8FC",
300: "#D4B9F9",
400: "#BA8CF4",
500: "#9F60EC",
600: "#7D2DDA", // Prewired logo hue
700: "#742EC2",
800: "#632A9F",
900: "#512380",
950: "#350D5E"
},
pink: {
50: "#FFF0F3",
100: "#FFE2EA",
200: "#FFCADA",
300: "#FF9FBB",
400: "#FF6998",
500: "#FF246E", // Prewired logo hue
600: "#ED1166",
700: "#C80857",
800: "#A8094F",
900: "#8F0C4A",
950: "#500124",
}
}
},
plugins: [],
};
export default config;