-
Notifications
You must be signed in to change notification settings - Fork 14
/
customize-styles.js
57 lines (43 loc) · 1.64 KB
/
customize-styles.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
/* Customization Guide available on:
https://gatsby-blog-mdx-demo.pages.dev/2020/05/4-customize/
======================================== */
// You can use color picker: https://www.color-hex.com/
const styleConfig = {
/* Fonts
========================================= */
fontMain: `'IBM Plex Sans'`, // Main Font
fontProfile: `'Oxanium'`, // Font inside profile
fontCodeBlocks: `Menlo, Monaco, monospace`, // Font for code blocks
// These fonts will be used if above fonts are unavailable
fontsBackUp: `, sans-serif, -apple-system, BlinkMacSystemFont,
'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue'`,
/* Colors for each Light / Dark Theme
========================================= */
headerColorLight: "#eee",
headerColorDark: "#252427",
bgColorLight: "#fff",
bgColorDark: "#292a30",
/* background colors surrounding profile & posts in main page */
bgSubColorLight: "#f7f7f7",
bgSubColorDark: "#26272e",
/* Font Colors */
fontColorLight: "#313131",
fontSubColorLight: "#808080",
fontColorDark: "#d3d3dc",
fontSubColorDark: "#a1a1a5",
/* Scrollbar Colors */
scrollbarColorLight: "#ccc",
scrollbarColorDark: "#747d92",
scrollbarBgLight: "#eff1f4",
scrollbarBgDark: "#2e3039",
scrollbarHoverLight: "#bbb",
scrollbarHoverDark: "#818ca4",
/* Underline Color */
underlineColorLight: "#8807ff",
underlineColorDark: "#f2c033",
/* Scroll Progress Bar Color */
progressBarColorLight: "#8b8ed3",
progressBarColorDark: "#838da4",
/* To customize code blocks, modify /src/components/Code/styles/* */
}
module.exports = styleConfig