-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
58 lines (52 loc) · 1.7 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
const defaultTheme = require("tailwindcss/defaultTheme");
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./components/**/*.{jsx,tsx}",
"./frames/**/*.{jsx,tsx}",
"./pages/**/*.{jsx,tsx}",
'./app/**/*.{jsx,tsx}'
],
theme: {
screens: {
// Below specified size; We use desktop first design philosophy.
'b2xl': {'max': '1535px'},
'bxl': {'max': '1279px'},
'blg': {'max': '1023px'},
'bmd': {'max': '767px'},
'bsm': {'max': '639px'},
},
colors: {
// Generic
"inherit": "inherit",
"transparent": "transparent",
"current": "currentColor",
"white": "#FFFFFF",
// Theme colors
"off-white-bg": "#FBFBFC",
"light-gray": "#F4F5F7",
"half-gray": "#E4E7ED",
"gray": "#C9CCD1",
"accent": {
"extra-light": "#ecd5ff",
"light": "#ddb4fe",
"medium": "#c884fc",
"dark": "#b355f7"
},
"error": {
"light": "#E5286C",
"dark": "#A41046"
},
// Text
"main": "#343b42",
"sub": "#4C4D59",
"quiet": "#707480"
},
fontFamily: {
"title": [ "var(--font-pathway-extreme)", "var(--font-inter)", ...defaultTheme.fontFamily.sans ],
"inter": [ "var(--font-inter)", ...defaultTheme.fontFamily.sans ],
"mono": [ "var(--font-noto-sans-mono)", ...defaultTheme.fontFamily.mono ],
}
},
plugins: [],
};