-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
57 lines (57 loc) · 1.63 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
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: ["class"],
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
boxShadow: {
cardShadow: "-25px 47px 66px 0px",
servicesCard: "30px 30px 40px #0252cd50",
},
backgroundImage: {
gradientRadial: "radial-gradient(var(--tw-gradient-stops))",
gradientConic:
"conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
initial: "conic-gradient(#0252cd, #0252cd54)",
},
colors: {
primaryLight: "#0252CD",
primaryDark: "#428DFF",
secondary: "#FFBE62",
challengeRed: "#E15A46",
learningsGreen: "#02BC7D",
cross: "#424B5C",
crossDark: "#F6F7F9",
white500: "#6F74A7",
white800: "#F3F8FF",
white900: "#FFFFFF",
black200: "#151E2C",
black300: "#192333",
black400: "#778295",
graphicOffWhite: "#F9FBFC",
graphicOffWhite2: "#E5F1FF",
graphicOffWhite3: "#F7F7F7",
graphicTurquoise: "#1AE5FF",
graphicLighterBlue: "#A9CCEA",
graphicPaleBlue: "#289DF2",
graphicLightBlue: "#2889DB",
graphicMidBlue: "#287DD1",
graphicDarkBlue: "#284D89",
graphicDarkerBlue: "#28385E",
graphicDarkestBlue: "#282E5C",
graphicGrey: "#0F3775",
graphicDarkGrey: "#0F3157",
graphicPaleRed: "#FF5C66",
graphicLightRed: "#FF4D6B",
},
screens: {
xs: "400px",
},
},
},
plugins: [],
};