Skip to content

Instantly share code, notes, and snippets.

@vixalien
Created January 15, 2023 18:04
Show Gist options
  • Save vixalien/befdb265f7ed9132f990832b2aa35e05 to your computer and use it in GitHub Desktop.
Save vixalien/befdb265f7ed9132f990832b2aa35e05 to your computer and use it in GitHub Desktop.
Adwaita (light/dark) color schemes for tilix/blackbox

Adwaita color schemes for Tilix/Blackbox

these schemes try to replicate the default Adwaita color palette as seen in GNOME Console, GNOME Terminal etc.

for tilix place these in ~/.local/share/tilix/schemes for blackbox place these in ~/.local/share/blackbox/schemes

light scheme

save this as Adwaita.json

{
    "name": "Adwaita",
    "comment": "Adwaita color theme",
    "foreground-color": "#000000",
    "background-color": "#ffffff",
    "use-theme-colors": true,
    "palette": [
        "#241F31",
        "#C01C28",
        "#2EC27E",
        "#F5C211",
        "#1E78E4",
        "#9841BB",
        "#0AB9DC",
        "#C0BFBC",
        "#5E5C64",
        "#ED333B",
        "#57E389",
        "#F8E45C",
        "#51A1FF",
        "#C061CB",
        "#4FD2FD",
        "#F6F5F4"
    ]
}

dark scheme

save this as Adwaita Dark.json

{
    "name": "Adwaita dark",
    "comment": "Adwaita dark color theme",
    "foreground-color": "#ffffff",
    "background-color": "#1E1E1E",
    "use-theme-colors": true,
    "palette": [
        "#241F31",
        "#C01C28",
        "#2EC27E",
        "#F5C211",
        "#1E78E4",
        "#9841BB",
        "#0AB9DC",
        "#C0BFBC",
        "#5E5C64",
        "#ED333B",
        "#57E389",
        "#F8E45C",
        "#51A1FF",
        "#C061CB",
        "#4FD2FD",
        "#F6F5F4"
    ]
}
@vixalien
Copy link
Author

to make blackbox look more like gnome console

  1. set font to "Source Code Variable 10"
  2. add a padding of "4"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment