-
Notifications
You must be signed in to change notification settings - Fork 5
/
tailwind.config.js
55 lines (49 loc) · 1.44 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,jsx,ts,tsx,md,mdx}",
"./components/**/*.{js,jsx,ts,tsx,md,mdx}",
"./theme.config.tsx",
],
theme: {
extend: {
colors: {
// atomic kit colors
"cf-gray-1": "#0A0A0A",
"cf-gray-2": "#111111",
"cf-gray-3": "#161616",
"cf-gray-4": "#2B2B2B",
"cf-gray-5": "#424242",
"cf-light-1": "#5F5F5F",
"cf-light-2": "#909090",
"cf-light-3": "#CDCDCD",
"cf-light-4": "#F6F6F6",
"cf-white": "#FFFFFF",
"cf-green-1": "#46DA93",
"cf-green-2": "#3DBF81",
"cf-green-3": "#A8FFD5",
"cf-green-4": "#0E2C1D",
"cf-orange-1": "#EC9F0A",
"cf-orange-2": "#FFD2A8",
"cf-orange-3": "#FFF2D0",
"cf-orange-4": "#2F2002",
"cf-blue-1": "#1B76FF",
"cf-blue-2": "#A8E5FF",
"cf-blue-3": "#DAE9FF",
"cf-blue-4": "#C9A8FF",
"cf-blue-5": "#051833",
"cf-pink-1": "#FF33AF",
"cf-red-1": "#F64848",
"cf-red-2": "#FFA8A8",
"cf-red-3": "#FFD7D7",
"cf-red-4": "#310E0E",
},
fontFamily: {
interRegular: ["Inter-Regular", "Helvetica", "Arial", "sans-serif"],
interMedium: ["Inter-Medium", "Helvetica", "Arial", "sans-serif"],
interBold: ["Inter-Bold", "Helvetica", "Arial", "sans-serif"],
},
},
},
plugins: [],
};