37 lines
764 B
Python
37 lines
764 B
Python
from theme import load_theme
|
|
|
|
config.load_autoconfig()
|
|
|
|
dracula = {
|
|
"base00": "#282a36",
|
|
"base01": "#363447",
|
|
"base02": "#44475a",
|
|
"base03": "#6272a4",
|
|
"base04": "#9ea8c7",
|
|
"base05": "#f8f8f2",
|
|
"base06": "#f0f1f4",
|
|
"base07": "#ffffff",
|
|
"base08": "#ff5555",
|
|
"base09": "#ffb86c",
|
|
"base0A": "#f1fa8c",
|
|
"base0B": "#50fa7b",
|
|
"base0C": "#8be9fd",
|
|
"base0D": "#80bfff",
|
|
"base0E": "#ff79c6",
|
|
"base0F": "#bd93f9",
|
|
}
|
|
|
|
load_theme(c, dracula)
|
|
|
|
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
|