38 lines
772 B
Python
38 lines
772 B
Python
|
from theme import load_theme
|
||
|
|
||
|
config.load_autoconfig()
|
||
|
|
||
|
tokyo_night = {
|
||
|
"base00": "#1a1b26",
|
||
|
"base01": "#16161e",
|
||
|
"base02": "#2f3549",
|
||
|
"base03": "#444b6a",
|
||
|
"base04": "#787c99",
|
||
|
"base05": "#a9b1d6",
|
||
|
"base06": "#cbccd1",
|
||
|
"base07": "#d5d6db",
|
||
|
"base08": "#c0caf5",
|
||
|
"base09": "#a9b1d6",
|
||
|
"base0A": "#0db9d7",
|
||
|
"base0B": "#9ece6a",
|
||
|
"base0C": "#b4f9f8",
|
||
|
"base0D": "#2ac3de",
|
||
|
"base0E": "#bb9af7",
|
||
|
"base0F": "#f7768e",
|
||
|
}
|
||
|
|
||
|
load_theme(c, tokyo_night)
|
||
|
|
||
|
c.colors.webpage.preferred_color_scheme = "dark"
|
||
|
c.tabs.position = "top"
|
||
|
c.tabs.width = 32
|
||
|
c.fonts.default_size = "13pt"
|
||
|
c.fonts.default_family = "sans-serif"
|
||
|
c.tabs.padding = {
|
||
|
"bottom": 4,
|
||
|
"top": 4,
|
||
|
"left": 6,
|
||
|
"right": 6,
|
||
|
}
|
||
|
c.tabs.indicator.width = 0
|