-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.toml
74 lines (63 loc) · 2.7 KB
/
config.toml
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
67
68
69
70
71
72
73
74
baseURL = '/'
languageCode = 'en-us'
title = "Vitalii Honta"
description = "Hello there, my name is Vitalii. Welcome to my personal blog 👋"
theme = "poison"
paginate = 10
pluralizelisttitles = false
disqusShortname = 'poison'
disqus_url = 'https://poison.lukeorth.com'
[params.image]
url = "/images/cover.png"
width = 512
height = 512
[params]
brand = "Vitalii Honta"
brand_image = "/images/avatar_square.png"
tags = ["Vitalii Honta"]
dark_mode = true
menu = [
{Name = "About", URL = "/about/", HasChildren = false},
{Name = "Posts", URL = "/posts/", Pre = "Recent", HasChildren = true, Limit = 5},
]
github_url = "https://github.com/vitaliihonta"
linkedin_url = "https://www.linkedin.com/in/vitalii-honta-a70236129/"
twitter_url = "https://twitter.com/HontaVitalii"
email_url = "mailto://vitalii.honta@gmail.com"
# Adds an RSS icon to the end of the socials which links to {{ .Site.BaseURL }}/index.xml
rss_icon = false
# Which section the RSS icon links to, defaults to all content. See https://gohugo.io/templates/rss/#section-rss
rss_section = "posts"
# sidebar
sidebar_bg_color = "#ebd06e" # default is #202020
sidebar_img_border_color = "#515151" # default is #515151
sidebar_p_color = "#333131" # default is #909090
sidebar_h1_color = "#065ba1" # default is #FFF
sidebar_a_color = "#065ba1" # default is #FFF
sidebar_socials_color = "#515151" # default is #FFF
moon_sun_color = "#FFF" # default is #FFF
moon_sun_background_color = "#515151" # default is #515151
# light mode
text_color = "#222" # default is #222
content_bg_color = "#f5f1e4" # default is #FAF9F6
post_title_color = "#303030" # default is #303030
list_color = "#222" # default is #5a5a5a
link_color = "#268bd2" # default is #268bd2
date_color = "#515151" # default is #515151
table_border_color = "#E5E5E5" # default is #E5E5E5
table_stripe_color = "#F9F9F9" # default is #F9F9F9
# dark mode
text_color_dark = "#eee" # default is #eee
content_bg_color_dark = "#474231" # default is #121212
post_title_color_dark = "#DBE2E9" # default is #DBE2E9
list_color_dark = "#eee" # default is #9d9d9d
link_color_dark = "#268bd2" # default is #268bd2
date_color_dark = "#9a9a9a" # default is #9a9a9a
table_border_color_dark = "#515151" # default is #515151
table_stripe_color_dark = "#202020" # default is #202020
[taxonomies]
series = 'series'
tags = 'tags'
[markup]
[markup.highlight]
style = 'onedark'