2025-04-03 02:26:24 +01:00
|
|
|
from theme import load_theme
|
|
|
|
|
|
|
|
config.load_autoconfig()
|
|
|
|
|
2025-04-12 20:50:25 +01:00
|
|
|
theme = {
|
|
|
|
"base00": "#191724",
|
|
|
|
"base01": "#1f1d2e",
|
|
|
|
"base02": "#26233a",
|
|
|
|
"base03": "#6e6a86",
|
|
|
|
"base04": "#908caa",
|
|
|
|
"base05": "#e0def4",
|
|
|
|
"base06": "#e0def4",
|
|
|
|
"base07": "#524f67",
|
|
|
|
"base08": "#eb6f92",
|
|
|
|
"base09": "#f6c177",
|
|
|
|
"base0A": "#ebbcba",
|
|
|
|
"base0B": "#31748f",
|
|
|
|
"base0C": "#9ccfd8",
|
|
|
|
"base0D": "#c4a7e7",
|
|
|
|
"base0E": "#f6c177",
|
|
|
|
"base0F": "#524f67",
|
2025-04-03 02:26:24 +01:00
|
|
|
}
|
|
|
|
|
2025-04-12 20:50:25 +01:00
|
|
|
load_theme(c, theme)
|
2025-04-03 02:26:24 +01:00
|
|
|
|
|
|
|
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
|