This returns tmpfiles to its original form. Turns out that making something too simple gives it less power.
37 lines
770 B
Python
37 lines
770 B
Python
from theme import load_theme
|
|
|
|
config.load_autoconfig()
|
|
|
|
everforest = {
|
|
"base00": "#2b3339",
|
|
"base01": "#323c41",
|
|
"base02": "#503946",
|
|
"base03": "#868d80",
|
|
"base04": "#d3c6aa",
|
|
"base05": "#d3c6aa",
|
|
"base06": "#e9e8d2",
|
|
"base07": "#fff9e8",
|
|
"base08": "#7fbbb3",
|
|
"base09": "#d699b6",
|
|
"base0A": "#83c092",
|
|
"base0B": "#dbbc7f",
|
|
"base0C": "#e69875",
|
|
"base0D": "#a7c080",
|
|
"base0E": "#e67e80",
|
|
"base0F": "#d699b6",
|
|
}
|
|
|
|
load_theme(c, everforest)
|
|
|
|
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
|