1
Fork 0
mirror of https://github.com/RGBCube/ThemeNix synced 2025-07-27 16:37:46 +00:00
ThemeNix/templates/firefoxTheme.nix
2023-12-01 15:52:53 +03:00

39 lines
1.6 KiB
Nix

# I'm actually not sure how to apply this to Firefox
# declaratively. Let me know if you ever find out.
theme: with theme.withHashtag; ''
{
"info": "${name} by ${author}",
"colors": {
"bookmark_text": "${base05}",
"button_background_active": "${base02}",
"button_background_hover": "${base01}",
"frame": "${base01}",
"icons": "${base05}",
"icons_attention": "${base0D}",
"ntp_background": "${base00}",
"ntp_text": "${base05}",
"popup": "${base00}",
"popup_border": "${base00}",
"popup_highlight": "${base02}",
"popup_highlight_text": "${base06}",
"popup_text": "${base05}",
"tab_background_separator": "${base04}",
"tab_background_text": "${base05}",
"tab_line": "${base0D}",
"tab_loading": "${base0D}",
"tab_selected": "${base00}",
"tab_text": "${base05}",
"toolbar": "${base00}",
"toolbar_bottom_separator": "${base01}",
"toolbar_field": "${base02}",
"toolbar_field_border": "${base00}",
"toolbar_field_border_focus": "${base0D}",
"toolbar_field_focus": "${base02}",
"toolbar_field_separator": "${base04}",
"toolbar_field_text": "${base06}",
"toolbar_field_text_focus": "${base06}",
"toolbar_top_separator": "${base01}",
"toolbar_vertical_separator": "${base01}"
}
}
''