feat(wrapping): introduce wrapped configurations
This commit is contained in:
parent
3892f6f79b
commit
2aa24ab2b9
22 changed files with 883 additions and 135 deletions
|
@ -2,35 +2,54 @@ from theme import load_theme
|
|||
|
||||
config.load_autoconfig()
|
||||
|
||||
carbonfox = {
|
||||
"base00": "#161616",
|
||||
"base01": "#252525",
|
||||
"base02": "#353535",
|
||||
"base03": "#484848",
|
||||
"base04": "#7b7c7e",
|
||||
"base05": "#f2f4f8",
|
||||
"base06": "#b6b8bb",
|
||||
"base07": "#e4e4e5",
|
||||
"base08": "#ee5396",
|
||||
"base09": "#3ddbd9",
|
||||
"base0A": "#08bdba",
|
||||
"base0B": "#25be6a",
|
||||
"base0C": "#33b1ff",
|
||||
"base0D": "#78a9ff",
|
||||
"base0E": "#be95ff",
|
||||
"base0F": "#ff7eb6",
|
||||
# carbonfox = {
|
||||
# "base00": "#161616",
|
||||
# "base01": "#252525",
|
||||
# "base02": "#353535",
|
||||
# "base03": "#484848",
|
||||
# "base04": "#7b7c7e",
|
||||
# "base05": "#f2f4f8",
|
||||
# "base06": "#b6b8bb",
|
||||
# "base07": "#e4e4e5",
|
||||
# "base08": "#ee5396",
|
||||
# "base09": "#3ddbd9",
|
||||
# "base0A": "#08bdba",
|
||||
# "base0B": "#25be6a",
|
||||
# "base0C": "#33b1ff",
|
||||
# "base0D": "#78a9ff",
|
||||
# "base0E": "#be95ff",
|
||||
# "base0F": "#ff7eb6",
|
||||
# }
|
||||
nord = {
|
||||
"base00": "#2E3440",
|
||||
"base01": "#3B4252",
|
||||
"base02": "#434C5E",
|
||||
"base03": "#4C566A",
|
||||
"base04": "#D8DEE9",
|
||||
"base05": "#E5E9F0",
|
||||
"base06": "#ECEFF4",
|
||||
"base07": "#8FBCBB",
|
||||
"base08": "#BF616A",
|
||||
"base09": "#D08770",
|
||||
"base0A": "#EBCB8B",
|
||||
"base0B": "#A3BE8C",
|
||||
"base0C": "#88C0D0",
|
||||
"base0D": "#81A1C1",
|
||||
"base0E": "#B48EAD",
|
||||
"base0F": "#5E81AC",
|
||||
}
|
||||
|
||||
load_theme(c, carbonfox)
|
||||
load_theme(c, nord)
|
||||
|
||||
c.colors.webpage.preferred_color_scheme = "dark"
|
||||
c.tabs.position = "left"
|
||||
c.tabs.width = 36
|
||||
c.tabs.width = 32
|
||||
c.fonts.default_size = "14pt"
|
||||
c.fonts.default_family = "sans-serif"
|
||||
c.tabs.padding = {
|
||||
"bottom": 2,
|
||||
"left": 3,
|
||||
"right": 3,
|
||||
"top": 2,
|
||||
"bottom": 6,
|
||||
"top": 6,
|
||||
"left": 6,
|
||||
"right": 6,
|
||||
}
|
||||
c.tabs.indicator.width = 0
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue