2025-01-08 10:26:51 +00:00
|
|
|
from theme import load_theme
|
|
|
|
|
2024-11-11 00:48:02 +00:00
|
|
|
config.load_autoconfig()
|
2024-12-10 23:03:51 +00:00
|
|
|
|
2025-01-09 05:33:37 +00:00
|
|
|
carbonfox = {
|
2025-01-08 10:26:51 +00:00
|
|
|
"base00": "#161616",
|
2025-01-09 05:33:37 +00:00
|
|
|
"base01": "#252525",
|
|
|
|
"base02": "#353535",
|
|
|
|
"base03": "#484848",
|
|
|
|
"base04": "#7b7c7e",
|
2025-01-08 10:26:51 +00:00
|
|
|
"base05": "#f2f4f8",
|
2025-01-09 05:33:37 +00:00
|
|
|
"base06": "#b6b8bb",
|
|
|
|
"base07": "#e4e4e5",
|
|
|
|
"base08": "#ee5396",
|
|
|
|
"base09": "#3ddbd9",
|
|
|
|
"base0A": "#08bdba",
|
|
|
|
"base0B": "#25be6a",
|
|
|
|
"base0C": "#33b1ff",
|
|
|
|
"base0D": "#78a9ff",
|
2025-01-08 10:26:51 +00:00
|
|
|
"base0E": "#be95ff",
|
2025-01-09 05:33:37 +00:00
|
|
|
"base0F": "#ff7eb6",
|
2025-01-08 10:26:51 +00:00
|
|
|
}
|
2025-01-09 05:33:37 +00:00
|
|
|
|
|
|
|
load_theme(c, carbonfox)
|
2025-01-08 10:26:51 +00:00
|
|
|
|
|
|
|
c.colors.webpage.preferred_color_scheme = "dark"
|
|
|
|
c.tabs.position = "left"
|
|
|
|
c.tabs.width = 36
|
|
|
|
c.fonts.default_size = "14pt"
|
|
|
|
c.fonts.default_family = "sans-serif"
|
|
|
|
c.tabs.padding = {
|
|
|
|
"bottom": 2,
|
|
|
|
"left": 3,
|
|
|
|
"right": 3,
|
|
|
|
"top": 2,
|
|
|
|
}
|