feat: build with deno; improve theme coverage (#8)
* feat: build with deno; improve theme coverage * chore: use standard description format Co-authored-by: uncenter <47499684+uncenter@users.noreply.github.com> * style: refactor * fix: generate seeded uuid for `id` * feat: theme active button * fix: use proper encoder * chore: refactor; add images * doc: readme usage * feat: more accented colours * chore: optimise nix deps Co-authored-by: Hamothy <58985301+sgoudham@users.noreply.github.com> * doc: remove hammy troll comments Co-authored-by: Hamothy <58985301+sgoudham@users.noreply.github.com> --------- Co-authored-by: uncenter <47499684+uncenter@users.noreply.github.com> Co-authored-by: Hamothy <58985301+sgoudham@users.noreply.github.com>
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
.direnv/
|
3
.vscode/settings.json
vendored
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"deno.enable": true
|
||||||
|
}
|
@ -37,13 +37,15 @@
|
|||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
1. Clone this repository
|
1. Clone this repository
|
||||||
2. Open Thunderbird, go to `Menu > Add-ons and Themes`
|
2. Open Thunderbird, go to `Settings > Add-ons and Themes`
|
||||||
3. Click on the gear icon at the top-right corner and then select "Install Add-on From File..."
|
3. Click on the gear icon at the top-right corner and then select "Install Add-on From File..."
|
||||||
4. Select a theme of choice from `themes` folder of downloaded repository, i.e. `Catppuccin-Mocha-Lavender.xpi`
|
4. Select a theme of choice from `themes` folder of downloaded repository, i.e. `mocha/mocha-blue.xpi`
|
||||||
|
5. Enjoy!
|
||||||
|
|
||||||
## 💝 Thanks to
|
## 💝 Thanks to
|
||||||
|
|
||||||
- [elkrien](https://github.com/elkrien)
|
- [elkrien](https://github.com/elkrien)
|
||||||
|
- [nullishamy](https://github.com/nullishamy)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
BIN
assets/icon128.png
Normal file
After Width: | Height: | Size: 3.1 KiB |
BIN
assets/icon16.png
Normal file
After Width: | Height: | Size: 342 B |
BIN
assets/icon48.png
Normal file
After Width: | Height: | Size: 899 B |
148
build.ts
Executable file
@ -0,0 +1,148 @@
|
|||||||
|
#!/usr/bin/env -S deno run --allow-read --allow-write --allow-env
|
||||||
|
import {
|
||||||
|
AlphaColor,
|
||||||
|
Color,
|
||||||
|
Labels,
|
||||||
|
variants,
|
||||||
|
} from "npm:@catppuccin/palette@0.1.5";
|
||||||
|
import { titleCase } from "https://deno.land/x/case@2.2.0/mod.ts";
|
||||||
|
import { JSZip } from "https://deno.land/x/jszip@0.11.0/mod.ts";
|
||||||
|
import * as uuid from "https://deno.land/std@0.207.0/uuid/mod.ts";
|
||||||
|
|
||||||
|
// Allows for the UUIDs to be "seeded" and therefore reproducible
|
||||||
|
// DO NOT CHANGE
|
||||||
|
const NAMESPACE_URL = "6da2d448-69ec-48e0-aabf-3c6379788110";
|
||||||
|
|
||||||
|
const accents = [
|
||||||
|
"rosewater",
|
||||||
|
"flamingo",
|
||||||
|
"pink",
|
||||||
|
"mauve",
|
||||||
|
"red",
|
||||||
|
"maroon",
|
||||||
|
"peach",
|
||||||
|
"yellow",
|
||||||
|
"green",
|
||||||
|
"teal",
|
||||||
|
"sky",
|
||||||
|
"sapphire",
|
||||||
|
"blue",
|
||||||
|
"lavender",
|
||||||
|
] as const;
|
||||||
|
|
||||||
|
async function makeThemeObject(
|
||||||
|
name: string,
|
||||||
|
accent: keyof Labels<Color, AlphaColor>,
|
||||||
|
palette: Labels<Color, AlphaColor>
|
||||||
|
) {
|
||||||
|
const themeName = `catppuccin-${name}-${accent}`;
|
||||||
|
const encodedName = new TextEncoder().encode(themeName)
|
||||||
|
return {
|
||||||
|
manifest_version: 2,
|
||||||
|
name: themeName,
|
||||||
|
version: "1.0.0",
|
||||||
|
applications: {
|
||||||
|
gecko: {
|
||||||
|
id: `{${await uuid.v5.generate(NAMESPACE_URL, encodedName)}}`,
|
||||||
|
strict_min_version: "60.0",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
description: `Soothing pastel theme for Thunderbird - ${titleCase(
|
||||||
|
name
|
||||||
|
)} ${titleCase(accent)}`,
|
||||||
|
icons: {
|
||||||
|
"16": "images/icon16.png",
|
||||||
|
"48": "images/icon48.png",
|
||||||
|
"128": "images/icon128.png",
|
||||||
|
},
|
||||||
|
theme_experiment: {
|
||||||
|
stylesheet: "styles.css",
|
||||||
|
colors: {
|
||||||
|
spaces_bg: "--spaces-bg-color",
|
||||||
|
spaces_bg_active: "--spaces-button-active-bg-color",
|
||||||
|
spaces_button: "--spaces-button-active-text-color",
|
||||||
|
tree_view_bg: "--tree-view-bg",
|
||||||
|
bg_color: "--bg-color",
|
||||||
|
button_primary_bg: "--button-primary-background-color",
|
||||||
|
button_text: "--button-primary-text-color"
|
||||||
|
},
|
||||||
|
},
|
||||||
|
theme: {
|
||||||
|
colors: {
|
||||||
|
frame: palette.base.hex,
|
||||||
|
button_background_active: palette[accent].hex,
|
||||||
|
button_background_hover: palette.surface0.hex,
|
||||||
|
icons: palette.text.hex,
|
||||||
|
tab_text: palette.text.hex,
|
||||||
|
tab_line: palette[accent].hex,
|
||||||
|
tab_loading: palette[accent].hex,
|
||||||
|
tab_selected: palette.base.hex,
|
||||||
|
tab_background_text: palette.overlay1.hex,
|
||||||
|
tab_background_separator: palette.surface0.hex,
|
||||||
|
bookmark_text: palette.text.hex,
|
||||||
|
toolbar: palette.base.hex,
|
||||||
|
toolbar_field: palette.surface0.hex,
|
||||||
|
toolbar_field_text: palette.text.hex,
|
||||||
|
toolbar_field_highlight: palette[accent].hex,
|
||||||
|
toolbar_field_highlight_text: palette.mantle.hex,
|
||||||
|
toolbar_field_border: palette.mantle.hex,
|
||||||
|
toolbar_field_focus: palette.surface0.hex,
|
||||||
|
toolbar_field_text_focus: palette.text.hex,
|
||||||
|
toolbar_field_border_focus: palette[accent].hex,
|
||||||
|
toolbar_top_separator: palette.surface0.hex,
|
||||||
|
toolbar_bottom_separator: palette.surface0.hex,
|
||||||
|
toolbar_vertical_separator: palette.surface0.hex,
|
||||||
|
sidebar: palette.base.hex,
|
||||||
|
sidebar_text: palette.text.hex,
|
||||||
|
sidebar_highlight: palette[accent].hex,
|
||||||
|
sidebar_highlight_text: palette.mantle.hex,
|
||||||
|
sidebar_border: palette.surface0.hex,
|
||||||
|
popup: palette.surface0.hex,
|
||||||
|
popup_text: palette.text.hex,
|
||||||
|
popup_border: palette.base.hex,
|
||||||
|
popup_highlight: palette[accent].hex,
|
||||||
|
popup_highlight_text: palette.mantle.hex,
|
||||||
|
spaces_bg: palette.mantle.hex,
|
||||||
|
tree_view_bg: palette.mantle.hex,
|
||||||
|
bg_color: palette.base.hex,
|
||||||
|
spaces_bg_active: palette[accent].hex,
|
||||||
|
button_primary_bg: palette[accent].hex,
|
||||||
|
button_text: palette.crust.hex,
|
||||||
|
spaces_button: palette.crust.hex
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
async function generateVariants(
|
||||||
|
name: string,
|
||||||
|
palette: Labels<Color, AlphaColor>
|
||||||
|
) {
|
||||||
|
for (const accent of accents) {
|
||||||
|
const theme = await makeThemeObject(name, accent, palette);
|
||||||
|
const json = JSON.stringify(theme, undefined, 2);
|
||||||
|
|
||||||
|
Deno.mkdirSync(`./themes/${name}`, {
|
||||||
|
recursive: true,
|
||||||
|
});
|
||||||
|
|
||||||
|
const zip = new JSZip();
|
||||||
|
zip.addFile("manifest.json", json);
|
||||||
|
|
||||||
|
const images = zip.folder("images")
|
||||||
|
images.addFile("icon16.png", "./assets/icon16.png")
|
||||||
|
images.addFile("icon48.png", "./assets/icon48.png")
|
||||||
|
images.addFile("icon128.png", "./assets/icon128.png")
|
||||||
|
|
||||||
|
await zip.writeZip(`./themes/${name}/${name}-${accent}.xpi`);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const start = performance.now();
|
||||||
|
await Promise.all(
|
||||||
|
Object.entries(variants).map(([name, palette]) =>
|
||||||
|
generateVariants(name, palette)
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
|
console.log("Built in", performance.now() - start, "ms");
|
156
flake.lock
generated
Normal file
@ -0,0 +1,156 @@
|
|||||||
|
{
|
||||||
|
"nodes": {
|
||||||
|
"catppuccin-toolbox": {
|
||||||
|
"inputs": {
|
||||||
|
"flake-utils": "flake-utils",
|
||||||
|
"nixpkgs": "nixpkgs",
|
||||||
|
"rust-overlay": "rust-overlay"
|
||||||
|
},
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1702536457,
|
||||||
|
"narHash": "sha256-iduIXSTy8hf85Mk04o+SqSE00Kyy1ymsymo/nfseZ98=",
|
||||||
|
"owner": "catppuccin",
|
||||||
|
"repo": "toolbox",
|
||||||
|
"rev": "23304913282815417cf96bf121fa77164e015b6a",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "catppuccin",
|
||||||
|
"repo": "toolbox",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"flake-utils": {
|
||||||
|
"inputs": {
|
||||||
|
"systems": "systems"
|
||||||
|
},
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1694529238,
|
||||||
|
"narHash": "sha256-zsNZZGTGnMOf9YpHKJqMSsa0dXbfmxeoJ7xHlrt+xmY=",
|
||||||
|
"owner": "numtide",
|
||||||
|
"repo": "flake-utils",
|
||||||
|
"rev": "ff7b65b44d01cf9ba6a71320833626af21126384",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "numtide",
|
||||||
|
"repo": "flake-utils",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"flake-utils_2": {
|
||||||
|
"inputs": {
|
||||||
|
"systems": "systems_2"
|
||||||
|
},
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1681202837,
|
||||||
|
"narHash": "sha256-H+Rh19JDwRtpVPAWp64F+rlEtxUWBAQW28eAi3SRSzg=",
|
||||||
|
"owner": "numtide",
|
||||||
|
"repo": "flake-utils",
|
||||||
|
"rev": "cfacdce06f30d2b68473a46042957675eebb3401",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "numtide",
|
||||||
|
"repo": "flake-utils",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"nixpkgs": {
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1697723726,
|
||||||
|
"narHash": "sha256-SaTWPkI8a5xSHX/rrKzUe+/uVNy6zCGMXgoeMb7T9rg=",
|
||||||
|
"owner": "NixOS",
|
||||||
|
"repo": "nixpkgs",
|
||||||
|
"rev": "7c9cc5a6e5d38010801741ac830a3f8fd667a7a0",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "NixOS",
|
||||||
|
"ref": "nixos-unstable",
|
||||||
|
"repo": "nixpkgs",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"nixpkgs_2": {
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1708566995,
|
||||||
|
"narHash": "sha256-e/THimsoxxMAHSbwMKov5f5Yg+utTj6XVGEo24Lhx+0=",
|
||||||
|
"owner": "nixos",
|
||||||
|
"repo": "nixpkgs",
|
||||||
|
"rev": "3cb4ae6689d2aa3f363516234572613b31212b78",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "nixos",
|
||||||
|
"ref": "nixos-23.11",
|
||||||
|
"repo": "nixpkgs",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"root": {
|
||||||
|
"inputs": {
|
||||||
|
"catppuccin-toolbox": "catppuccin-toolbox",
|
||||||
|
"flake-utils": "flake-utils_2",
|
||||||
|
"nixpkgs": "nixpkgs_2"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"rust-overlay": {
|
||||||
|
"inputs": {
|
||||||
|
"flake-utils": [
|
||||||
|
"catppuccin-toolbox",
|
||||||
|
"flake-utils"
|
||||||
|
],
|
||||||
|
"nixpkgs": [
|
||||||
|
"catppuccin-toolbox",
|
||||||
|
"nixpkgs"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1697940838,
|
||||||
|
"narHash": "sha256-eyk92QqAoRNC0V99KOcKcBZjLPixxNBS0PRc4KlSQVs=",
|
||||||
|
"owner": "oxalica",
|
||||||
|
"repo": "rust-overlay",
|
||||||
|
"rev": "a3e829c06eadf848f13d109c7648570ce37ebccd",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "oxalica",
|
||||||
|
"repo": "rust-overlay",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"systems": {
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1681028828,
|
||||||
|
"narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
|
||||||
|
"owner": "nix-systems",
|
||||||
|
"repo": "default",
|
||||||
|
"rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "nix-systems",
|
||||||
|
"repo": "default",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"systems_2": {
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1681028828,
|
||||||
|
"narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
|
||||||
|
"owner": "nix-systems",
|
||||||
|
"repo": "default",
|
||||||
|
"rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "nix-systems",
|
||||||
|
"repo": "default",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"root": "root",
|
||||||
|
"version": 7
|
||||||
|
}
|
18
flake.nix
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
{
|
||||||
|
inputs = {
|
||||||
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-23.11";
|
||||||
|
flake-utils.url = "github:numtide/flake-utils";
|
||||||
|
};
|
||||||
|
|
||||||
|
description = "Development shell flake";
|
||||||
|
outputs = { self, nixpkgs, flake-utils }: flake-utils.lib.eachDefaultSystem (system: {
|
||||||
|
devShell = let
|
||||||
|
pkgs = nixpkgs.legacyPackages.${system};
|
||||||
|
in
|
||||||
|
pkgs.mkShell {
|
||||||
|
packages = with pkgs; [
|
||||||
|
deno
|
||||||
|
];
|
||||||
|
};
|
||||||
|
});
|
||||||
|
}
|
Before Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 5.7 KiB |
Before Width: | Height: | Size: 12 KiB |
@ -1,54 +0,0 @@
|
|||||||
{
|
|
||||||
"manifest_version": 2,
|
|
||||||
"name": "Catppuccin-Frappe-Blue Thunderbird Theme",
|
|
||||||
"version": "1.0.0",
|
|
||||||
"applications": {
|
|
||||||
"gecko": {
|
|
||||||
"id": "elkrien@gmail.com",
|
|
||||||
"strict_min_version": "60.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"description": "Catppuccin theme for Thunderbird - Frappe Blue",
|
|
||||||
"icons": {
|
|
||||||
"16": "images/icon16.png",
|
|
||||||
"48": "images/icon48.png",
|
|
||||||
"128": "images/icon128.png"
|
|
||||||
},
|
|
||||||
"theme": {
|
|
||||||
"colors": {
|
|
||||||
"frame": "#303446",
|
|
||||||
"button_background_active": "#8CAAEE",
|
|
||||||
"button_background_hover": "#414559",
|
|
||||||
"icons": "#C6D0F5",
|
|
||||||
"tab_text": "#C6D0F5",
|
|
||||||
"tab_line": "#8CAAEE",
|
|
||||||
"tab_loading": "#8CAAEE",
|
|
||||||
"tab_selected": "#303446",
|
|
||||||
"tab_background_text": "#838BA7",
|
|
||||||
"tab_background_separator": "#414559",
|
|
||||||
"bookmark_text": "#C6D0F5",
|
|
||||||
"toolbar": "#303446",
|
|
||||||
"toolbar_field": "#414559",
|
|
||||||
"toolbar_field_text": "#C6D0F5",
|
|
||||||
"toolbar_field_highlight": "#8CAAEE",
|
|
||||||
"toolbar_field_highlight_text": "#292C3C",
|
|
||||||
"toolbar_field_border": "#292C3C",
|
|
||||||
"toolbar_field_focus": "#414559",
|
|
||||||
"toolbar_field_text_focus": "#C6D0F5",
|
|
||||||
"toolbar_field_border_focus": "#8CAAEE",
|
|
||||||
"toolbar_top_separator": "#414559",
|
|
||||||
"toolbar_bottom_separator": "#414559",
|
|
||||||
"toolbar_vertical_separator": "#414559",
|
|
||||||
"sidebar": "#303446",
|
|
||||||
"sidebar_text": "#C6D0F5",
|
|
||||||
"sidebar_highlight": "#8CAAEE",
|
|
||||||
"sidebar_highlight_text": "#292C3C",
|
|
||||||
"sidebar_border": "#414559",
|
|
||||||
"popup": "#414559",
|
|
||||||
"popup_text": "#C6D0F5",
|
|
||||||
"popup_border": "#303446",
|
|
||||||
"popup_highlight": "#8CAAEE",
|
|
||||||
"popup_highlight_text": "#292C3C"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
Before Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 5.7 KiB |
Before Width: | Height: | Size: 12 KiB |
@ -1,54 +0,0 @@
|
|||||||
{
|
|
||||||
"manifest_version": 2,
|
|
||||||
"name": "Catppuccin-Frappe-Flamingo Thunderbird Theme",
|
|
||||||
"version": "1.0.0",
|
|
||||||
"applications": {
|
|
||||||
"gecko": {
|
|
||||||
"id": "elkrien@gmail.com",
|
|
||||||
"strict_min_version": "60.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"description": "Catppuccin theme for Thunderbird - Frappe Flamingo",
|
|
||||||
"icons": {
|
|
||||||
"16": "images/icon16.png",
|
|
||||||
"48": "images/icon48.png",
|
|
||||||
"128": "images/icon128.png"
|
|
||||||
},
|
|
||||||
"theme": {
|
|
||||||
"colors": {
|
|
||||||
"frame": "#303446",
|
|
||||||
"button_background_active": "#EEBEBE",
|
|
||||||
"button_background_hover": "#414559",
|
|
||||||
"icons": "#C6D0F5",
|
|
||||||
"tab_text": "#C6D0F5",
|
|
||||||
"tab_line": "#EEBEBE",
|
|
||||||
"tab_loading": "#EEBEBE",
|
|
||||||
"tab_selected": "#303446",
|
|
||||||
"tab_background_text": "#838BA7",
|
|
||||||
"tab_background_separator": "#414559",
|
|
||||||
"bookmark_text": "#C6D0F5",
|
|
||||||
"toolbar": "#303446",
|
|
||||||
"toolbar_field": "#414559",
|
|
||||||
"toolbar_field_text": "#C6D0F5",
|
|
||||||
"toolbar_field_highlight": "#EEBEBE",
|
|
||||||
"toolbar_field_highlight_text": "#292C3C",
|
|
||||||
"toolbar_field_border": "#292C3C",
|
|
||||||
"toolbar_field_focus": "#414559",
|
|
||||||
"toolbar_field_text_focus": "#C6D0F5",
|
|
||||||
"toolbar_field_border_focus": "#EEBEBE",
|
|
||||||
"toolbar_top_separator": "#414559",
|
|
||||||
"toolbar_bottom_separator": "#414559",
|
|
||||||
"toolbar_vertical_separator": "#414559",
|
|
||||||
"sidebar": "#303446",
|
|
||||||
"sidebar_text": "#C6D0F5",
|
|
||||||
"sidebar_highlight": "#EEBEBE",
|
|
||||||
"sidebar_highlight_text": "#292C3C",
|
|
||||||
"sidebar_border": "#414559",
|
|
||||||
"popup": "#414559",
|
|
||||||
"popup_text": "#C6D0F5",
|
|
||||||
"popup_border": "#303446",
|
|
||||||
"popup_highlight": "#EEBEBE",
|
|
||||||
"popup_highlight_text": "#292C3C"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
Before Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 5.7 KiB |
Before Width: | Height: | Size: 12 KiB |
@ -1,54 +0,0 @@
|
|||||||
{
|
|
||||||
"manifest_version": 2,
|
|
||||||
"name": "Catppuccin-Frappe-Green Thunderbird Theme",
|
|
||||||
"version": "1.0.0",
|
|
||||||
"applications": {
|
|
||||||
"gecko": {
|
|
||||||
"id": "elkrien@gmail.com",
|
|
||||||
"strict_min_version": "60.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"description": "Catppuccin theme for Thunderbird - Frappe Green",
|
|
||||||
"icons": {
|
|
||||||
"16": "images/icon16.png",
|
|
||||||
"48": "images/icon48.png",
|
|
||||||
"128": "images/icon128.png"
|
|
||||||
},
|
|
||||||
"theme": {
|
|
||||||
"colors": {
|
|
||||||
"frame": "#303446",
|
|
||||||
"button_background_active": "#A6D189",
|
|
||||||
"button_background_hover": "#414559",
|
|
||||||
"icons": "#C6D0F5",
|
|
||||||
"tab_text": "#C6D0F5",
|
|
||||||
"tab_line": "#A6D189",
|
|
||||||
"tab_loading": "#A6D189",
|
|
||||||
"tab_selected": "#303446",
|
|
||||||
"tab_background_text": "#838BA7",
|
|
||||||
"tab_background_separator": "#414559",
|
|
||||||
"bookmark_text": "#C6D0F5",
|
|
||||||
"toolbar": "#303446",
|
|
||||||
"toolbar_field": "#414559",
|
|
||||||
"toolbar_field_text": "#C6D0F5",
|
|
||||||
"toolbar_field_highlight": "#A6D189",
|
|
||||||
"toolbar_field_highlight_text": "#292C3C",
|
|
||||||
"toolbar_field_border": "#292C3C",
|
|
||||||
"toolbar_field_focus": "#414559",
|
|
||||||
"toolbar_field_text_focus": "#C6D0F5",
|
|
||||||
"toolbar_field_border_focus": "#A6D189",
|
|
||||||
"toolbar_top_separator": "#414559",
|
|
||||||
"toolbar_bottom_separator": "#414559",
|
|
||||||
"toolbar_vertical_separator": "#414559",
|
|
||||||
"sidebar": "#303446",
|
|
||||||
"sidebar_text": "#C6D0F5",
|
|
||||||
"sidebar_highlight": "#A6D189",
|
|
||||||
"sidebar_highlight_text": "#292C3C",
|
|
||||||
"sidebar_border": "#414559",
|
|
||||||
"popup": "#414559",
|
|
||||||
"popup_text": "#C6D0F5",
|
|
||||||
"popup_border": "#303446",
|
|
||||||
"popup_highlight": "#A6D189",
|
|
||||||
"popup_highlight_text": "#292C3C"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
Before Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 5.7 KiB |
Before Width: | Height: | Size: 12 KiB |
@ -1,54 +0,0 @@
|
|||||||
{
|
|
||||||
"manifest_version": 2,
|
|
||||||
"name": "Catppuccin-Frappe-Lavender Thunderbird Theme",
|
|
||||||
"version": "1.0.0",
|
|
||||||
"applications": {
|
|
||||||
"gecko": {
|
|
||||||
"id": "elkrien@gmail.com",
|
|
||||||
"strict_min_version": "60.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"description": "Catppuccin theme for Thunderbird - Frappe Lavender",
|
|
||||||
"icons": {
|
|
||||||
"16": "images/icon16.png",
|
|
||||||
"48": "images/icon48.png",
|
|
||||||
"128": "images/icon128.png"
|
|
||||||
},
|
|
||||||
"theme": {
|
|
||||||
"colors": {
|
|
||||||
"frame": "#303446",
|
|
||||||
"button_background_active": "#BABBF1",
|
|
||||||
"button_background_hover": "#414559",
|
|
||||||
"icons": "#C6D0F5",
|
|
||||||
"tab_text": "#C6D0F5",
|
|
||||||
"tab_line": "#BABBF1",
|
|
||||||
"tab_loading": "#BABBF1",
|
|
||||||
"tab_selected": "#303446",
|
|
||||||
"tab_background_text": "#838BA7",
|
|
||||||
"tab_background_separator": "#414559",
|
|
||||||
"bookmark_text": "#C6D0F5",
|
|
||||||
"toolbar": "#303446",
|
|
||||||
"toolbar_field": "#414559",
|
|
||||||
"toolbar_field_text": "#C6D0F5",
|
|
||||||
"toolbar_field_highlight": "#BABBF1",
|
|
||||||
"toolbar_field_highlight_text": "#292C3C",
|
|
||||||
"toolbar_field_border": "#292C3C",
|
|
||||||
"toolbar_field_focus": "#414559",
|
|
||||||
"toolbar_field_text_focus": "#C6D0F5",
|
|
||||||
"toolbar_field_border_focus": "#BABBF1",
|
|
||||||
"toolbar_top_separator": "#414559",
|
|
||||||
"toolbar_bottom_separator": "#414559",
|
|
||||||
"toolbar_vertical_separator": "#414559",
|
|
||||||
"sidebar": "#303446",
|
|
||||||
"sidebar_text": "#C6D0F5",
|
|
||||||
"sidebar_highlight": "#BABBF1",
|
|
||||||
"sidebar_highlight_text": "#292C3C",
|
|
||||||
"sidebar_border": "#414559",
|
|
||||||
"popup": "#414559",
|
|
||||||
"popup_text": "#C6D0F5",
|
|
||||||
"popup_border": "#303446",
|
|
||||||
"popup_highlight": "#BABBF1",
|
|
||||||
"popup_highlight_text": "#292C3C"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
Before Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 5.7 KiB |
Before Width: | Height: | Size: 12 KiB |
@ -1,54 +0,0 @@
|
|||||||
{
|
|
||||||
"manifest_version": 2,
|
|
||||||
"name": "Catppuccin-Frappe-Maroon Thunderbird Theme",
|
|
||||||
"version": "1.0.0",
|
|
||||||
"applications": {
|
|
||||||
"gecko": {
|
|
||||||
"id": "elkrien@gmail.com",
|
|
||||||
"strict_min_version": "60.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"description": "Catppuccin theme for Thunderbird - Frappe Maroon",
|
|
||||||
"icons": {
|
|
||||||
"16": "images/icon16.png",
|
|
||||||
"48": "images/icon48.png",
|
|
||||||
"128": "images/icon128.png"
|
|
||||||
},
|
|
||||||
"theme": {
|
|
||||||
"colors": {
|
|
||||||
"frame": "#303446",
|
|
||||||
"button_background_active": "#EA999C",
|
|
||||||
"button_background_hover": "#414559",
|
|
||||||
"icons": "#C6D0F5",
|
|
||||||
"tab_text": "#C6D0F5",
|
|
||||||
"tab_line": "#EA999C",
|
|
||||||
"tab_loading": "#EA999C",
|
|
||||||
"tab_selected": "#303446",
|
|
||||||
"tab_background_text": "#838BA7",
|
|
||||||
"tab_background_separator": "#414559",
|
|
||||||
"bookmark_text": "#C6D0F5",
|
|
||||||
"toolbar": "#303446",
|
|
||||||
"toolbar_field": "#414559",
|
|
||||||
"toolbar_field_text": "#C6D0F5",
|
|
||||||
"toolbar_field_highlight": "#EA999C",
|
|
||||||
"toolbar_field_highlight_text": "#292C3C",
|
|
||||||
"toolbar_field_border": "#292C3C",
|
|
||||||
"toolbar_field_focus": "#414559",
|
|
||||||
"toolbar_field_text_focus": "#C6D0F5",
|
|
||||||
"toolbar_field_border_focus": "#EA999C",
|
|
||||||
"toolbar_top_separator": "#414559",
|
|
||||||
"toolbar_bottom_separator": "#414559",
|
|
||||||
"toolbar_vertical_separator": "#414559",
|
|
||||||
"sidebar": "#303446",
|
|
||||||
"sidebar_text": "#C6D0F5",
|
|
||||||
"sidebar_highlight": "#EA999C",
|
|
||||||
"sidebar_highlight_text": "#292C3C",
|
|
||||||
"sidebar_border": "#414559",
|
|
||||||
"popup": "#414559",
|
|
||||||
"popup_text": "#C6D0F5",
|
|
||||||
"popup_border": "#303446",
|
|
||||||
"popup_highlight": "#EA999C",
|
|
||||||
"popup_highlight_text": "#292C3C"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
Before Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 5.7 KiB |
Before Width: | Height: | Size: 12 KiB |
@ -1,54 +0,0 @@
|
|||||||
{
|
|
||||||
"manifest_version": 2,
|
|
||||||
"name": "Catppuccin-Frappe-Mauve Thunderbird Theme",
|
|
||||||
"version": "1.0.0",
|
|
||||||
"applications": {
|
|
||||||
"gecko": {
|
|
||||||
"id": "elkrien@gmail.com",
|
|
||||||
"strict_min_version": "60.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"description": "Catppuccin theme for Thunderbird - Frappe Mauve",
|
|
||||||
"icons": {
|
|
||||||
"16": "images/icon16.png",
|
|
||||||
"48": "images/icon48.png",
|
|
||||||
"128": "images/icon128.png"
|
|
||||||
},
|
|
||||||
"theme": {
|
|
||||||
"colors": {
|
|
||||||
"frame": "#303446",
|
|
||||||
"button_background_active": "#CA9EE6",
|
|
||||||
"button_background_hover": "#414559",
|
|
||||||
"icons": "#C6D0F5",
|
|
||||||
"tab_text": "#C6D0F5",
|
|
||||||
"tab_line": "#CA9EE6",
|
|
||||||
"tab_loading": "#CA9EE6",
|
|
||||||
"tab_selected": "#303446",
|
|
||||||
"tab_background_text": "#838BA7",
|
|
||||||
"tab_background_separator": "#414559",
|
|
||||||
"bookmark_text": "#C6D0F5",
|
|
||||||
"toolbar": "#303446",
|
|
||||||
"toolbar_field": "#414559",
|
|
||||||
"toolbar_field_text": "#C6D0F5",
|
|
||||||
"toolbar_field_highlight": "#CA9EE6",
|
|
||||||
"toolbar_field_highlight_text": "#292C3C",
|
|
||||||
"toolbar_field_border": "#292C3C",
|
|
||||||
"toolbar_field_focus": "#414559",
|
|
||||||
"toolbar_field_text_focus": "#C6D0F5",
|
|
||||||
"toolbar_field_border_focus": "#CA9EE6",
|
|
||||||
"toolbar_top_separator": "#414559",
|
|
||||||
"toolbar_bottom_separator": "#414559",
|
|
||||||
"toolbar_vertical_separator": "#414559",
|
|
||||||
"sidebar": "#303446",
|
|
||||||
"sidebar_text": "#C6D0F5",
|
|
||||||
"sidebar_highlight": "#CA9EE6",
|
|
||||||
"sidebar_highlight_text": "#292C3C",
|
|
||||||
"sidebar_border": "#414559",
|
|
||||||
"popup": "#414559",
|
|
||||||
"popup_text": "#C6D0F5",
|
|
||||||
"popup_border": "#303446",
|
|
||||||
"popup_highlight": "#CA9EE6",
|
|
||||||
"popup_highlight_text": "#292C3C"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
Before Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 5.7 KiB |
Before Width: | Height: | Size: 12 KiB |
@ -1,54 +0,0 @@
|
|||||||
{
|
|
||||||
"manifest_version": 2,
|
|
||||||
"name": "Catppuccin-Frappe-Peach Thunderbird Theme",
|
|
||||||
"version": "1.0.0",
|
|
||||||
"applications": {
|
|
||||||
"gecko": {
|
|
||||||
"id": "elkrien@gmail.com",
|
|
||||||
"strict_min_version": "60.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"description": "Catppuccin theme for Thunderbird - Frappe Peach",
|
|
||||||
"icons": {
|
|
||||||
"16": "images/icon16.png",
|
|
||||||
"48": "images/icon48.png",
|
|
||||||
"128": "images/icon128.png"
|
|
||||||
},
|
|
||||||
"theme": {
|
|
||||||
"colors": {
|
|
||||||
"frame": "#303446",
|
|
||||||
"button_background_active": "#EF9F76",
|
|
||||||
"button_background_hover": "#414559",
|
|
||||||
"icons": "#C6D0F5",
|
|
||||||
"tab_text": "#C6D0F5",
|
|
||||||
"tab_line": "#EF9F76",
|
|
||||||
"tab_loading": "#EF9F76",
|
|
||||||
"tab_selected": "#303446",
|
|
||||||
"tab_background_text": "#838BA7",
|
|
||||||
"tab_background_separator": "#414559",
|
|
||||||
"bookmark_text": "#C6D0F5",
|
|
||||||
"toolbar": "#303446",
|
|
||||||
"toolbar_field": "#414559",
|
|
||||||
"toolbar_field_text": "#C6D0F5",
|
|
||||||
"toolbar_field_highlight": "#EF9F76",
|
|
||||||
"toolbar_field_highlight_text": "#292C3C",
|
|
||||||
"toolbar_field_border": "#292C3C",
|
|
||||||
"toolbar_field_focus": "#414559",
|
|
||||||
"toolbar_field_text_focus": "#C6D0F5",
|
|
||||||
"toolbar_field_border_focus": "#EF9F76",
|
|
||||||
"toolbar_top_separator": "#414559",
|
|
||||||
"toolbar_bottom_separator": "#414559",
|
|
||||||
"toolbar_vertical_separator": "#414559",
|
|
||||||
"sidebar": "#303446",
|
|
||||||
"sidebar_text": "#C6D0F5",
|
|
||||||
"sidebar_highlight": "#EF9F76",
|
|
||||||
"sidebar_highlight_text": "#292C3C",
|
|
||||||
"sidebar_border": "#414559",
|
|
||||||
"popup": "#414559",
|
|
||||||
"popup_text": "#C6D0F5",
|
|
||||||
"popup_border": "#303446",
|
|
||||||
"popup_highlight": "#EF9F76",
|
|
||||||
"popup_highlight_text": "#292C3C"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
Before Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 5.7 KiB |
Before Width: | Height: | Size: 12 KiB |
@ -1,54 +0,0 @@
|
|||||||
{
|
|
||||||
"manifest_version": 2,
|
|
||||||
"name": "Catppuccin-Frappe-Pink Thunderbird Theme",
|
|
||||||
"version": "1.0.0",
|
|
||||||
"applications": {
|
|
||||||
"gecko": {
|
|
||||||
"id": "elkrien@gmail.com",
|
|
||||||
"strict_min_version": "60.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"description": "Catppuccin theme for Thunderbird - Frappe Pink",
|
|
||||||
"icons": {
|
|
||||||
"16": "images/icon16.png",
|
|
||||||
"48": "images/icon48.png",
|
|
||||||
"128": "images/icon128.png"
|
|
||||||
},
|
|
||||||
"theme": {
|
|
||||||
"colors": {
|
|
||||||
"frame": "#303446",
|
|
||||||
"button_background_active": "#F4B8E4",
|
|
||||||
"button_background_hover": "#414559",
|
|
||||||
"icons": "#C6D0F5",
|
|
||||||
"tab_text": "#C6D0F5",
|
|
||||||
"tab_line": "#F4B8E4",
|
|
||||||
"tab_loading": "#F4B8E4",
|
|
||||||
"tab_selected": "#303446",
|
|
||||||
"tab_background_text": "#838BA7",
|
|
||||||
"tab_background_separator": "#414559",
|
|
||||||
"bookmark_text": "#C6D0F5",
|
|
||||||
"toolbar": "#303446",
|
|
||||||
"toolbar_field": "#414559",
|
|
||||||
"toolbar_field_text": "#C6D0F5",
|
|
||||||
"toolbar_field_highlight": "#F4B8E4",
|
|
||||||
"toolbar_field_highlight_text": "#292C3C",
|
|
||||||
"toolbar_field_border": "#292C3C",
|
|
||||||
"toolbar_field_focus": "#414559",
|
|
||||||
"toolbar_field_text_focus": "#C6D0F5",
|
|
||||||
"toolbar_field_border_focus": "#F4B8E4",
|
|
||||||
"toolbar_top_separator": "#414559",
|
|
||||||
"toolbar_bottom_separator": "#414559",
|
|
||||||
"toolbar_vertical_separator": "#414559",
|
|
||||||
"sidebar": "#303446",
|
|
||||||
"sidebar_text": "#C6D0F5",
|
|
||||||
"sidebar_highlight": "#F4B8E4",
|
|
||||||
"sidebar_highlight_text": "#292C3C",
|
|
||||||
"sidebar_border": "#414559",
|
|
||||||
"popup": "#414559",
|
|
||||||
"popup_text": "#C6D0F5",
|
|
||||||
"popup_border": "#303446",
|
|
||||||
"popup_highlight": "#F4B8E4",
|
|
||||||
"popup_highlight_text": "#292C3C"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
Before Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 5.7 KiB |
Before Width: | Height: | Size: 12 KiB |
@ -1,54 +0,0 @@
|
|||||||
{
|
|
||||||
"manifest_version": 2,
|
|
||||||
"name": "Catppuccin-Frappe-Red Thunderbird Theme",
|
|
||||||
"version": "1.0.0",
|
|
||||||
"applications": {
|
|
||||||
"gecko": {
|
|
||||||
"id": "elkrien@gmail.com",
|
|
||||||
"strict_min_version": "60.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"description": "Catppuccin theme for Thunderbird - Frappe Red",
|
|
||||||
"icons": {
|
|
||||||
"16": "images/icon16.png",
|
|
||||||
"48": "images/icon48.png",
|
|
||||||
"128": "images/icon128.png"
|
|
||||||
},
|
|
||||||
"theme": {
|
|
||||||
"colors": {
|
|
||||||
"frame": "#303446",
|
|
||||||
"button_background_active": "#E78284",
|
|
||||||
"button_background_hover": "#414559",
|
|
||||||
"icons": "#C6D0F5",
|
|
||||||
"tab_text": "#C6D0F5",
|
|
||||||
"tab_line": "#E78284",
|
|
||||||
"tab_loading": "#E78284",
|
|
||||||
"tab_selected": "#303446",
|
|
||||||
"tab_background_text": "#838BA7",
|
|
||||||
"tab_background_separator": "#414559",
|
|
||||||
"bookmark_text": "#C6D0F5",
|
|
||||||
"toolbar": "#303446",
|
|
||||||
"toolbar_field": "#414559",
|
|
||||||
"toolbar_field_text": "#C6D0F5",
|
|
||||||
"toolbar_field_highlight": "#E78284",
|
|
||||||
"toolbar_field_highlight_text": "#292C3C",
|
|
||||||
"toolbar_field_border": "#292C3C",
|
|
||||||
"toolbar_field_focus": "#414559",
|
|
||||||
"toolbar_field_text_focus": "#C6D0F5",
|
|
||||||
"toolbar_field_border_focus": "#E78284",
|
|
||||||
"toolbar_top_separator": "#414559",
|
|
||||||
"toolbar_bottom_separator": "#414559",
|
|
||||||
"toolbar_vertical_separator": "#414559",
|
|
||||||
"sidebar": "#303446",
|
|
||||||
"sidebar_text": "#C6D0F5",
|
|
||||||
"sidebar_highlight": "#E78284",
|
|
||||||
"sidebar_highlight_text": "#292C3C",
|
|
||||||
"sidebar_border": "#414559",
|
|
||||||
"popup": "#414559",
|
|
||||||
"popup_text": "#C6D0F5",
|
|
||||||
"popup_border": "#303446",
|
|
||||||
"popup_highlight": "#E78284",
|
|
||||||
"popup_highlight_text": "#292C3C"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
Before Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 5.7 KiB |
Before Width: | Height: | Size: 12 KiB |
@ -1,54 +0,0 @@
|
|||||||
{
|
|
||||||
"manifest_version": 2,
|
|
||||||
"name": "Catppuccin-Frappe-Rosewater Thunderbird Theme",
|
|
||||||
"version": "1.0.0",
|
|
||||||
"applications": {
|
|
||||||
"gecko": {
|
|
||||||
"id": "elkrien@gmail.com",
|
|
||||||
"strict_min_version": "60.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"description": "Catppuccin theme for Thunderbird - Frappe Rosewater",
|
|
||||||
"icons": {
|
|
||||||
"16": "images/icon16.png",
|
|
||||||
"48": "images/icon48.png",
|
|
||||||
"128": "images/icon128.png"
|
|
||||||
},
|
|
||||||
"theme": {
|
|
||||||
"colors": {
|
|
||||||
"frame": "#303446",
|
|
||||||
"button_background_active": "#F2D5CF",
|
|
||||||
"button_background_hover": "#414559",
|
|
||||||
"icons": "#C6D0F5",
|
|
||||||
"tab_text": "#C6D0F5",
|
|
||||||
"tab_line": "#F2D5CF",
|
|
||||||
"tab_loading": "#F2D5CF",
|
|
||||||
"tab_selected": "#303446",
|
|
||||||
"tab_background_text": "#838BA7",
|
|
||||||
"tab_background_separator": "#414559",
|
|
||||||
"bookmark_text": "#C6D0F5",
|
|
||||||
"toolbar": "#303446",
|
|
||||||
"toolbar_field": "#414559",
|
|
||||||
"toolbar_field_text": "#C6D0F5",
|
|
||||||
"toolbar_field_highlight": "#F2D5CF",
|
|
||||||
"toolbar_field_highlight_text": "#292C3C",
|
|
||||||
"toolbar_field_border": "#292C3C",
|
|
||||||
"toolbar_field_focus": "#414559",
|
|
||||||
"toolbar_field_text_focus": "#C6D0F5",
|
|
||||||
"toolbar_field_border_focus": "#F2D5CF",
|
|
||||||
"toolbar_top_separator": "#414559",
|
|
||||||
"toolbar_bottom_separator": "#414559",
|
|
||||||
"toolbar_vertical_separator": "#414559",
|
|
||||||
"sidebar": "#303446",
|
|
||||||
"sidebar_text": "#C6D0F5",
|
|
||||||
"sidebar_highlight": "#F2D5CF",
|
|
||||||
"sidebar_highlight_text": "#292C3C",
|
|
||||||
"sidebar_border": "#414559",
|
|
||||||
"popup": "#414559",
|
|
||||||
"popup_text": "#C6D0F5",
|
|
||||||
"popup_border": "#303446",
|
|
||||||
"popup_highlight": "#F2D5CF",
|
|
||||||
"popup_highlight_text": "#292C3C"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
Before Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 5.7 KiB |
Before Width: | Height: | Size: 12 KiB |
@ -1,54 +0,0 @@
|
|||||||
{
|
|
||||||
"manifest_version": 2,
|
|
||||||
"name": "Catppuccin-Frappe-Sapphire Thunderbird Theme",
|
|
||||||
"version": "1.0.0",
|
|
||||||
"applications": {
|
|
||||||
"gecko": {
|
|
||||||
"id": "elkrien@gmail.com",
|
|
||||||
"strict_min_version": "60.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"description": "Catppuccin theme for Thunderbird - Frappe Sapphire",
|
|
||||||
"icons": {
|
|
||||||
"16": "images/icon16.png",
|
|
||||||
"48": "images/icon48.png",
|
|
||||||
"128": "images/icon128.png"
|
|
||||||
},
|
|
||||||
"theme": {
|
|
||||||
"colors": {
|
|
||||||
"frame": "#303446",
|
|
||||||
"button_background_active": "#85C1DC",
|
|
||||||
"button_background_hover": "#414559",
|
|
||||||
"icons": "#C6D0F5",
|
|
||||||
"tab_text": "#C6D0F5",
|
|
||||||
"tab_line": "#85C1DC",
|
|
||||||
"tab_loading": "#85C1DC",
|
|
||||||
"tab_selected": "#303446",
|
|
||||||
"tab_background_text": "#838BA7",
|
|
||||||
"tab_background_separator": "#414559",
|
|
||||||
"bookmark_text": "#C6D0F5",
|
|
||||||
"toolbar": "#303446",
|
|
||||||
"toolbar_field": "#414559",
|
|
||||||
"toolbar_field_text": "#C6D0F5",
|
|
||||||
"toolbar_field_highlight": "#85C1DC",
|
|
||||||
"toolbar_field_highlight_text": "#292C3C",
|
|
||||||
"toolbar_field_border": "#292C3C",
|
|
||||||
"toolbar_field_focus": "#414559",
|
|
||||||
"toolbar_field_text_focus": "#C6D0F5",
|
|
||||||
"toolbar_field_border_focus": "#85C1DC",
|
|
||||||
"toolbar_top_separator": "#414559",
|
|
||||||
"toolbar_bottom_separator": "#414559",
|
|
||||||
"toolbar_vertical_separator": "#414559",
|
|
||||||
"sidebar": "#303446",
|
|
||||||
"sidebar_text": "#C6D0F5",
|
|
||||||
"sidebar_highlight": "#85C1DC",
|
|
||||||
"sidebar_highlight_text": "#292C3C",
|
|
||||||
"sidebar_border": "#414559",
|
|
||||||
"popup": "#414559",
|
|
||||||
"popup_text": "#C6D0F5",
|
|
||||||
"popup_border": "#303446",
|
|
||||||
"popup_highlight": "#85C1DC",
|
|
||||||
"popup_highlight_text": "#292C3C"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
Before Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 5.7 KiB |
Before Width: | Height: | Size: 12 KiB |
@ -1,54 +0,0 @@
|
|||||||
{
|
|
||||||
"manifest_version": 2,
|
|
||||||
"name": "Catppuccin-Frappe-Sky Thunderbird Theme",
|
|
||||||
"version": "1.0.0",
|
|
||||||
"applications": {
|
|
||||||
"gecko": {
|
|
||||||
"id": "elkrien@gmail.com",
|
|
||||||
"strict_min_version": "60.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"description": "Catppuccin theme for Thunderbird - Frappe Sky",
|
|
||||||
"icons": {
|
|
||||||
"16": "images/icon16.png",
|
|
||||||
"48": "images/icon48.png",
|
|
||||||
"128": "images/icon128.png"
|
|
||||||
},
|
|
||||||
"theme": {
|
|
||||||
"colors": {
|
|
||||||
"frame": "#303446",
|
|
||||||
"button_background_active": "#99D1DB",
|
|
||||||
"button_background_hover": "#414559",
|
|
||||||
"icons": "#C6D0F5",
|
|
||||||
"tab_text": "#C6D0F5",
|
|
||||||
"tab_line": "#99D1DB",
|
|
||||||
"tab_loading": "#99D1DB",
|
|
||||||
"tab_selected": "#303446",
|
|
||||||
"tab_background_text": "#838BA7",
|
|
||||||
"tab_background_separator": "#414559",
|
|
||||||
"bookmark_text": "#C6D0F5",
|
|
||||||
"toolbar": "#303446",
|
|
||||||
"toolbar_field": "#414559",
|
|
||||||
"toolbar_field_text": "#C6D0F5",
|
|
||||||
"toolbar_field_highlight": "#99D1DB",
|
|
||||||
"toolbar_field_highlight_text": "#292C3C",
|
|
||||||
"toolbar_field_border": "#292C3C",
|
|
||||||
"toolbar_field_focus": "#414559",
|
|
||||||
"toolbar_field_text_focus": "#C6D0F5",
|
|
||||||
"toolbar_field_border_focus": "#99D1DB",
|
|
||||||
"toolbar_top_separator": "#414559",
|
|
||||||
"toolbar_bottom_separator": "#414559",
|
|
||||||
"toolbar_vertical_separator": "#414559",
|
|
||||||
"sidebar": "#303446",
|
|
||||||
"sidebar_text": "#C6D0F5",
|
|
||||||
"sidebar_highlight": "#99D1DB",
|
|
||||||
"sidebar_highlight_text": "#292C3C",
|
|
||||||
"sidebar_border": "#414559",
|
|
||||||
"popup": "#414559",
|
|
||||||
"popup_text": "#C6D0F5",
|
|
||||||
"popup_border": "#303446",
|
|
||||||
"popup_highlight": "#99D1DB",
|
|
||||||
"popup_highlight_text": "#292C3C"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
Before Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 5.7 KiB |
Before Width: | Height: | Size: 12 KiB |
@ -1,54 +0,0 @@
|
|||||||
{
|
|
||||||
"manifest_version": 2,
|
|
||||||
"name": "Catppuccin-Frappe-Teal Thunderbird Theme",
|
|
||||||
"version": "1.0.0",
|
|
||||||
"applications": {
|
|
||||||
"gecko": {
|
|
||||||
"id": "elkrien@gmail.com",
|
|
||||||
"strict_min_version": "60.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"description": "Catppuccin theme for Thunderbird - Frappe Teal",
|
|
||||||
"icons": {
|
|
||||||
"16": "images/icon16.png",
|
|
||||||
"48": "images/icon48.png",
|
|
||||||
"128": "images/icon128.png"
|
|
||||||
},
|
|
||||||
"theme": {
|
|
||||||
"colors": {
|
|
||||||
"frame": "#303446",
|
|
||||||
"button_background_active": "#81C8BE",
|
|
||||||
"button_background_hover": "#414559",
|
|
||||||
"icons": "#C6D0F5",
|
|
||||||
"tab_text": "#C6D0F5",
|
|
||||||
"tab_line": "#81C8BE",
|
|
||||||
"tab_loading": "#81C8BE",
|
|
||||||
"tab_selected": "#303446",
|
|
||||||
"tab_background_text": "#838BA7",
|
|
||||||
"tab_background_separator": "#414559",
|
|
||||||
"bookmark_text": "#C6D0F5",
|
|
||||||
"toolbar": "#303446",
|
|
||||||
"toolbar_field": "#414559",
|
|
||||||
"toolbar_field_text": "#C6D0F5",
|
|
||||||
"toolbar_field_highlight": "#81C8BE",
|
|
||||||
"toolbar_field_highlight_text": "#292C3C",
|
|
||||||
"toolbar_field_border": "#292C3C",
|
|
||||||
"toolbar_field_focus": "#414559",
|
|
||||||
"toolbar_field_text_focus": "#C6D0F5",
|
|
||||||
"toolbar_field_border_focus": "#81C8BE",
|
|
||||||
"toolbar_top_separator": "#414559",
|
|
||||||
"toolbar_bottom_separator": "#414559",
|
|
||||||
"toolbar_vertical_separator": "#414559",
|
|
||||||
"sidebar": "#303446",
|
|
||||||
"sidebar_text": "#C6D0F5",
|
|
||||||
"sidebar_highlight": "#81C8BE",
|
|
||||||
"sidebar_highlight_text": "#292C3C",
|
|
||||||
"sidebar_border": "#414559",
|
|
||||||
"popup": "#414559",
|
|
||||||
"popup_text": "#C6D0F5",
|
|
||||||
"popup_border": "#303446",
|
|
||||||
"popup_highlight": "#81C8BE",
|
|
||||||
"popup_highlight_text": "#292C3C"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
Before Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 5.7 KiB |
Before Width: | Height: | Size: 12 KiB |
@ -1,54 +0,0 @@
|
|||||||
{
|
|
||||||
"manifest_version": 2,
|
|
||||||
"name": "Catppuccin-Frappe-Yellow Thunderbird Theme",
|
|
||||||
"version": "1.0.0",
|
|
||||||
"applications": {
|
|
||||||
"gecko": {
|
|
||||||
"id": "elkrien@gmail.com",
|
|
||||||
"strict_min_version": "60.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"description": "Catppuccin theme for Thunderbird - Frappe Yellow",
|
|
||||||
"icons": {
|
|
||||||
"16": "images/icon16.png",
|
|
||||||
"48": "images/icon48.png",
|
|
||||||
"128": "images/icon128.png"
|
|
||||||
},
|
|
||||||
"theme": {
|
|
||||||
"colors": {
|
|
||||||
"frame": "#303446",
|
|
||||||
"button_background_active": "#E5C890",
|
|
||||||
"button_background_hover": "#414559",
|
|
||||||
"icons": "#C6D0F5",
|
|
||||||
"tab_text": "#C6D0F5",
|
|
||||||
"tab_line": "#E5C890",
|
|
||||||
"tab_loading": "#E5C890",
|
|
||||||
"tab_selected": "#303446",
|
|
||||||
"tab_background_text": "#838BA7",
|
|
||||||
"tab_background_separator": "#414559",
|
|
||||||
"bookmark_text": "#C6D0F5",
|
|
||||||
"toolbar": "#303446",
|
|
||||||
"toolbar_field": "#414559",
|
|
||||||
"toolbar_field_text": "#C6D0F5",
|
|
||||||
"toolbar_field_highlight": "#E5C890",
|
|
||||||
"toolbar_field_highlight_text": "#292C3C",
|
|
||||||
"toolbar_field_border": "#292C3C",
|
|
||||||
"toolbar_field_focus": "#414559",
|
|
||||||
"toolbar_field_text_focus": "#C6D0F5",
|
|
||||||
"toolbar_field_border_focus": "#E5C890",
|
|
||||||
"toolbar_top_separator": "#414559",
|
|
||||||
"toolbar_bottom_separator": "#414559",
|
|
||||||
"toolbar_vertical_separator": "#414559",
|
|
||||||
"sidebar": "#303446",
|
|
||||||
"sidebar_text": "#C6D0F5",
|
|
||||||
"sidebar_highlight": "#E5C890",
|
|
||||||
"sidebar_highlight_text": "#292C3C",
|
|
||||||
"sidebar_border": "#414559",
|
|
||||||
"popup": "#414559",
|
|
||||||
"popup_text": "#C6D0F5",
|
|
||||||
"popup_border": "#303446",
|
|
||||||
"popup_highlight": "#E5C890",
|
|
||||||
"popup_highlight_text": "#292C3C"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
Before Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 5.7 KiB |
Before Width: | Height: | Size: 12 KiB |
@ -1,54 +0,0 @@
|
|||||||
{
|
|
||||||
"manifest_version": 2,
|
|
||||||
"name": "Catppuccin-Latte-Blue Thunderbird Theme",
|
|
||||||
"version": "1.0.0",
|
|
||||||
"applications": {
|
|
||||||
"gecko": {
|
|
||||||
"id": "elkrien@gmail.com",
|
|
||||||
"strict_min_version": "60.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"description": "Catppuccin theme for Thunderbird - Latte Blue",
|
|
||||||
"icons": {
|
|
||||||
"16": "images/icon16.png",
|
|
||||||
"48": "images/icon48.png",
|
|
||||||
"128": "images/icon128.png"
|
|
||||||
},
|
|
||||||
"theme": {
|
|
||||||
"colors": {
|
|
||||||
"frame": "#EFF1F5",
|
|
||||||
"button_background_active": "#1E66F5",
|
|
||||||
"button_background_hover": "#CCD0DA",
|
|
||||||
"icons": "#4C4F69",
|
|
||||||
"tab_text": "#4C4F69",
|
|
||||||
"tab_line": "#1E66F5",
|
|
||||||
"tab_loading": "#1E66F5",
|
|
||||||
"tab_selected": "#EFF1F5",
|
|
||||||
"tab_background_text": "#6C6F85",
|
|
||||||
"tab_background_separator": "#CCD0DA",
|
|
||||||
"bookmark_text": "#4C4F69",
|
|
||||||
"toolbar": "#EFF1F5",
|
|
||||||
"toolbar_field": "#CCD0DA",
|
|
||||||
"toolbar_field_text": "#4C4F69",
|
|
||||||
"toolbar_field_highlight": "#1E66F5",
|
|
||||||
"toolbar_field_highlight_text": "#E6E9EF",
|
|
||||||
"toolbar_field_border": "#E6E9EF",
|
|
||||||
"toolbar_field_focus": "#CCD0DA",
|
|
||||||
"toolbar_field_text_focus": "#4C4F69",
|
|
||||||
"toolbar_field_border_focus": "#1E66F5",
|
|
||||||
"toolbar_top_separator": "#CCD0DA",
|
|
||||||
"toolbar_bottom_separator": "#CCD0DA",
|
|
||||||
"toolbar_vertical_separator": "#CCD0DA",
|
|
||||||
"sidebar": "#EFF1F5",
|
|
||||||
"sidebar_text": "#4C4F69",
|
|
||||||
"sidebar_highlight": "#1E66F5",
|
|
||||||
"sidebar_highlight_text": "#E6E9EF",
|
|
||||||
"sidebar_border": "#CCD0DA",
|
|
||||||
"popup": "#CCD0DA",
|
|
||||||
"popup_text": "#4C4F69",
|
|
||||||
"popup_border": "#EFF1F5",
|
|
||||||
"popup_highlight": "#1E66F5",
|
|
||||||
"popup_highlight_text": "#E6E9EF"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
Before Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 5.7 KiB |
Before Width: | Height: | Size: 12 KiB |
@ -1,54 +0,0 @@
|
|||||||
{
|
|
||||||
"manifest_version": 2,
|
|
||||||
"name": "Catppuccin-Latte-Flamingo Thunderbird Theme",
|
|
||||||
"version": "1.0.0",
|
|
||||||
"applications": {
|
|
||||||
"gecko": {
|
|
||||||
"id": "elkrien@gmail.com",
|
|
||||||
"strict_min_version": "60.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"description": "Catppuccin theme for Thunderbird - Latte Flamingo",
|
|
||||||
"icons": {
|
|
||||||
"16": "images/icon16.png",
|
|
||||||
"48": "images/icon48.png",
|
|
||||||
"128": "images/icon128.png"
|
|
||||||
},
|
|
||||||
"theme": {
|
|
||||||
"colors": {
|
|
||||||
"frame": "#EFF1F5",
|
|
||||||
"button_background_active": "#DD7878",
|
|
||||||
"button_background_hover": "#CCD0DA",
|
|
||||||
"icons": "#4C4F69",
|
|
||||||
"tab_text": "#4C4F69",
|
|
||||||
"tab_line": "#DD7878",
|
|
||||||
"tab_loading": "#DD7878",
|
|
||||||
"tab_selected": "#EFF1F5",
|
|
||||||
"tab_background_text": "#6C6F85",
|
|
||||||
"tab_background_separator": "#CCD0DA",
|
|
||||||
"bookmark_text": "#4C4F69",
|
|
||||||
"toolbar": "#EFF1F5",
|
|
||||||
"toolbar_field": "#CCD0DA",
|
|
||||||
"toolbar_field_text": "#4C4F69",
|
|
||||||
"toolbar_field_highlight": "#DD7878",
|
|
||||||
"toolbar_field_highlight_text": "#E6E9EF",
|
|
||||||
"toolbar_field_border": "#E6E9EF",
|
|
||||||
"toolbar_field_focus": "#CCD0DA",
|
|
||||||
"toolbar_field_text_focus": "#4C4F69",
|
|
||||||
"toolbar_field_border_focus": "#DD7878",
|
|
||||||
"toolbar_top_separator": "#CCD0DA",
|
|
||||||
"toolbar_bottom_separator": "#CCD0DA",
|
|
||||||
"toolbar_vertical_separator": "#CCD0DA",
|
|
||||||
"sidebar": "#EFF1F5",
|
|
||||||
"sidebar_text": "#4C4F69",
|
|
||||||
"sidebar_highlight": "#DD7878",
|
|
||||||
"sidebar_highlight_text": "#E6E9EF",
|
|
||||||
"sidebar_border": "#CCD0DA",
|
|
||||||
"popup": "#CCD0DA",
|
|
||||||
"popup_text": "#4C4F69",
|
|
||||||
"popup_border": "#EFF1F5",
|
|
||||||
"popup_highlight": "#DD7878",
|
|
||||||
"popup_highlight_text": "#E6E9EF"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
Before Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 5.7 KiB |
Before Width: | Height: | Size: 12 KiB |
@ -1,54 +0,0 @@
|
|||||||
{
|
|
||||||
"manifest_version": 2,
|
|
||||||
"name": "Catppuccin-Latte-Green Thunderbird Theme",
|
|
||||||
"version": "1.0.0",
|
|
||||||
"applications": {
|
|
||||||
"gecko": {
|
|
||||||
"id": "elkrien@gmail.com",
|
|
||||||
"strict_min_version": "60.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"description": "Catppuccin theme for Thunderbird - Latte Green",
|
|
||||||
"icons": {
|
|
||||||
"16": "images/icon16.png",
|
|
||||||
"48": "images/icon48.png",
|
|
||||||
"128": "images/icon128.png"
|
|
||||||
},
|
|
||||||
"theme": {
|
|
||||||
"colors": {
|
|
||||||
"frame": "#EFF1F5",
|
|
||||||
"button_background_active": "#40A02B",
|
|
||||||
"button_background_hover": "#CCD0DA",
|
|
||||||
"icons": "#4C4F69",
|
|
||||||
"tab_text": "#4C4F69",
|
|
||||||
"tab_line": "#40A02B",
|
|
||||||
"tab_loading": "#40A02B",
|
|
||||||
"tab_selected": "#EFF1F5",
|
|
||||||
"tab_background_text": "#6C6F85",
|
|
||||||
"tab_background_separator": "#CCD0DA",
|
|
||||||
"bookmark_text": "#4C4F69",
|
|
||||||
"toolbar": "#EFF1F5",
|
|
||||||
"toolbar_field": "#CCD0DA",
|
|
||||||
"toolbar_field_text": "#4C4F69",
|
|
||||||
"toolbar_field_highlight": "#40A02B",
|
|
||||||
"toolbar_field_highlight_text": "#E6E9EF",
|
|
||||||
"toolbar_field_border": "#E6E9EF",
|
|
||||||
"toolbar_field_focus": "#CCD0DA",
|
|
||||||
"toolbar_field_text_focus": "#4C4F69",
|
|
||||||
"toolbar_field_border_focus": "#40A02B",
|
|
||||||
"toolbar_top_separator": "#CCD0DA",
|
|
||||||
"toolbar_bottom_separator": "#CCD0DA",
|
|
||||||
"toolbar_vertical_separator": "#CCD0DA",
|
|
||||||
"sidebar": "#EFF1F5",
|
|
||||||
"sidebar_text": "#4C4F69",
|
|
||||||
"sidebar_highlight": "#40A02B",
|
|
||||||
"sidebar_highlight_text": "#E6E9EF",
|
|
||||||
"sidebar_border": "#CCD0DA",
|
|
||||||
"popup": "#CCD0DA",
|
|
||||||
"popup_text": "#4C4F69",
|
|
||||||
"popup_border": "#EFF1F5",
|
|
||||||
"popup_highlight": "#40A02B",
|
|
||||||
"popup_highlight_text": "#E6E9EF"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
Before Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 5.7 KiB |
Before Width: | Height: | Size: 12 KiB |
@ -1,54 +0,0 @@
|
|||||||
{
|
|
||||||
"manifest_version": 2,
|
|
||||||
"name": "Catppuccin-Latte-Lavender Thunderbird Theme",
|
|
||||||
"version": "1.0.0",
|
|
||||||
"applications": {
|
|
||||||
"gecko": {
|
|
||||||
"id": "elkrien@gmail.com",
|
|
||||||
"strict_min_version": "60.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"description": "Catppuccin theme for Thunderbird - Latte Lavender",
|
|
||||||
"icons": {
|
|
||||||
"16": "images/icon16.png",
|
|
||||||
"48": "images/icon48.png",
|
|
||||||
"128": "images/icon128.png"
|
|
||||||
},
|
|
||||||
"theme": {
|
|
||||||
"colors": {
|
|
||||||
"frame": "#EFF1F5",
|
|
||||||
"button_background_active": "#7287FD",
|
|
||||||
"button_background_hover": "#CCD0DA",
|
|
||||||
"icons": "#4C4F69",
|
|
||||||
"tab_text": "#4C4F69",
|
|
||||||
"tab_line": "#7287FD",
|
|
||||||
"tab_loading": "#7287FD",
|
|
||||||
"tab_selected": "#EFF1F5",
|
|
||||||
"tab_background_text": "#6C6F85",
|
|
||||||
"tab_background_separator": "#CCD0DA",
|
|
||||||
"bookmark_text": "#4C4F69",
|
|
||||||
"toolbar": "#EFF1F5",
|
|
||||||
"toolbar_field": "#CCD0DA",
|
|
||||||
"toolbar_field_text": "#4C4F69",
|
|
||||||
"toolbar_field_highlight": "#7287FD",
|
|
||||||
"toolbar_field_highlight_text": "#E6E9EF",
|
|
||||||
"toolbar_field_border": "#E6E9EF",
|
|
||||||
"toolbar_field_focus": "#CCD0DA",
|
|
||||||
"toolbar_field_text_focus": "#4C4F69",
|
|
||||||
"toolbar_field_border_focus": "#7287FD",
|
|
||||||
"toolbar_top_separator": "#CCD0DA",
|
|
||||||
"toolbar_bottom_separator": "#CCD0DA",
|
|
||||||
"toolbar_vertical_separator": "#CCD0DA",
|
|
||||||
"sidebar": "#EFF1F5",
|
|
||||||
"sidebar_text": "#4C4F69",
|
|
||||||
"sidebar_highlight": "#7287FD",
|
|
||||||
"sidebar_highlight_text": "#E6E9EF",
|
|
||||||
"sidebar_border": "#CCD0DA",
|
|
||||||
"popup": "#CCD0DA",
|
|
||||||
"popup_text": "#4C4F69",
|
|
||||||
"popup_border": "#EFF1F5",
|
|
||||||
"popup_highlight": "#7287FD",
|
|
||||||
"popup_highlight_text": "#E6E9EF"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
Before Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 5.7 KiB |
Before Width: | Height: | Size: 12 KiB |
@ -1,54 +0,0 @@
|
|||||||
{
|
|
||||||
"manifest_version": 2,
|
|
||||||
"name": "Catppuccin-Latte-Maroon Thunderbird Theme",
|
|
||||||
"version": "1.0.0",
|
|
||||||
"applications": {
|
|
||||||
"gecko": {
|
|
||||||
"id": "elkrien@gmail.com",
|
|
||||||
"strict_min_version": "60.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"description": "Catppuccin theme for Thunderbird - Latte Maroon",
|
|
||||||
"icons": {
|
|
||||||
"16": "images/icon16.png",
|
|
||||||
"48": "images/icon48.png",
|
|
||||||
"128": "images/icon128.png"
|
|
||||||
},
|
|
||||||
"theme": {
|
|
||||||
"colors": {
|
|
||||||
"frame": "#EFF1F5",
|
|
||||||
"button_background_active": "#E64553",
|
|
||||||
"button_background_hover": "#CCD0DA",
|
|
||||||
"icons": "#4C4F69",
|
|
||||||
"tab_text": "#4C4F69",
|
|
||||||
"tab_line": "#E64553",
|
|
||||||
"tab_loading": "#E64553",
|
|
||||||
"tab_selected": "#EFF1F5",
|
|
||||||
"tab_background_text": "#6C6F85",
|
|
||||||
"tab_background_separator": "#CCD0DA",
|
|
||||||
"bookmark_text": "#4C4F69",
|
|
||||||
"toolbar": "#EFF1F5",
|
|
||||||
"toolbar_field": "#CCD0DA",
|
|
||||||
"toolbar_field_text": "#4C4F69",
|
|
||||||
"toolbar_field_highlight": "#E64553",
|
|
||||||
"toolbar_field_highlight_text": "#E6E9EF",
|
|
||||||
"toolbar_field_border": "#E6E9EF",
|
|
||||||
"toolbar_field_focus": "#CCD0DA",
|
|
||||||
"toolbar_field_text_focus": "#4C4F69",
|
|
||||||
"toolbar_field_border_focus": "#E64553",
|
|
||||||
"toolbar_top_separator": "#CCD0DA",
|
|
||||||
"toolbar_bottom_separator": "#CCD0DA",
|
|
||||||
"toolbar_vertical_separator": "#CCD0DA",
|
|
||||||
"sidebar": "#EFF1F5",
|
|
||||||
"sidebar_text": "#4C4F69",
|
|
||||||
"sidebar_highlight": "#E64553",
|
|
||||||
"sidebar_highlight_text": "#E6E9EF",
|
|
||||||
"sidebar_border": "#CCD0DA",
|
|
||||||
"popup": "#CCD0DA",
|
|
||||||
"popup_text": "#4C4F69",
|
|
||||||
"popup_border": "#EFF1F5",
|
|
||||||
"popup_highlight": "#E64553",
|
|
||||||
"popup_highlight_text": "#E6E9EF"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
Before Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 5.7 KiB |
Before Width: | Height: | Size: 12 KiB |
@ -1,54 +0,0 @@
|
|||||||
{
|
|
||||||
"manifest_version": 2,
|
|
||||||
"name": "Catppuccin-Latte-Mauve Thunderbird Theme",
|
|
||||||
"version": "1.0.0",
|
|
||||||
"applications": {
|
|
||||||
"gecko": {
|
|
||||||
"id": "elkrien@gmail.com",
|
|
||||||
"strict_min_version": "60.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"description": "Catppuccin theme for Thunderbird - Latte Mauve",
|
|
||||||
"icons": {
|
|
||||||
"16": "images/icon16.png",
|
|
||||||
"48": "images/icon48.png",
|
|
||||||
"128": "images/icon128.png"
|
|
||||||
},
|
|
||||||
"theme": {
|
|
||||||
"colors": {
|
|
||||||
"frame": "#EFF1F5",
|
|
||||||
"button_background_active": "#8839EF",
|
|
||||||
"button_background_hover": "#CCD0DA",
|
|
||||||
"icons": "#4C4F69",
|
|
||||||
"tab_text": "#4C4F69",
|
|
||||||
"tab_line": "#8839EF",
|
|
||||||
"tab_loading": "#8839EF",
|
|
||||||
"tab_selected": "#EFF1F5",
|
|
||||||
"tab_background_text": "#6C6F85",
|
|
||||||
"tab_background_separator": "#CCD0DA",
|
|
||||||
"bookmark_text": "#4C4F69",
|
|
||||||
"toolbar": "#EFF1F5",
|
|
||||||
"toolbar_field": "#CCD0DA",
|
|
||||||
"toolbar_field_text": "#4C4F69",
|
|
||||||
"toolbar_field_highlight": "#8839EF",
|
|
||||||
"toolbar_field_highlight_text": "#E6E9EF",
|
|
||||||
"toolbar_field_border": "#E6E9EF",
|
|
||||||
"toolbar_field_focus": "#CCD0DA",
|
|
||||||
"toolbar_field_text_focus": "#4C4F69",
|
|
||||||
"toolbar_field_border_focus": "#8839EF",
|
|
||||||
"toolbar_top_separator": "#CCD0DA",
|
|
||||||
"toolbar_bottom_separator": "#CCD0DA",
|
|
||||||
"toolbar_vertical_separator": "#CCD0DA",
|
|
||||||
"sidebar": "#EFF1F5",
|
|
||||||
"sidebar_text": "#4C4F69",
|
|
||||||
"sidebar_highlight": "#8839EF",
|
|
||||||
"sidebar_highlight_text": "#E6E9EF",
|
|
||||||
"sidebar_border": "#CCD0DA",
|
|
||||||
"popup": "#CCD0DA",
|
|
||||||
"popup_text": "#4C4F69",
|
|
||||||
"popup_border": "#EFF1F5",
|
|
||||||
"popup_highlight": "#8839EF",
|
|
||||||
"popup_highlight_text": "#E6E9EF"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
Before Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 5.7 KiB |
Before Width: | Height: | Size: 12 KiB |
@ -1,54 +0,0 @@
|
|||||||
{
|
|
||||||
"manifest_version": 2,
|
|
||||||
"name": "Catppuccin-Latte-Peach Thunderbird Theme",
|
|
||||||
"version": "1.0.0",
|
|
||||||
"applications": {
|
|
||||||
"gecko": {
|
|
||||||
"id": "elkrien@gmail.com",
|
|
||||||
"strict_min_version": "60.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"description": "Catppuccin theme for Thunderbird - Latte Peach",
|
|
||||||
"icons": {
|
|
||||||
"16": "images/icon16.png",
|
|
||||||
"48": "images/icon48.png",
|
|
||||||
"128": "images/icon128.png"
|
|
||||||
},
|
|
||||||
"theme": {
|
|
||||||
"colors": {
|
|
||||||
"frame": "#EFF1F5",
|
|
||||||
"button_background_active": "#FE640B",
|
|
||||||
"button_background_hover": "#CCD0DA",
|
|
||||||
"icons": "#4C4F69",
|
|
||||||
"tab_text": "#4C4F69",
|
|
||||||
"tab_line": "#FE640B",
|
|
||||||
"tab_loading": "#FE640B",
|
|
||||||
"tab_selected": "#EFF1F5",
|
|
||||||
"tab_background_text": "#6C6F85",
|
|
||||||
"tab_background_separator": "#CCD0DA",
|
|
||||||
"bookmark_text": "#4C4F69",
|
|
||||||
"toolbar": "#EFF1F5",
|
|
||||||
"toolbar_field": "#CCD0DA",
|
|
||||||
"toolbar_field_text": "#4C4F69",
|
|
||||||
"toolbar_field_highlight": "#FE640B",
|
|
||||||
"toolbar_field_highlight_text": "#E6E9EF",
|
|
||||||
"toolbar_field_border": "#E6E9EF",
|
|
||||||
"toolbar_field_focus": "#CCD0DA",
|
|
||||||
"toolbar_field_text_focus": "#4C4F69",
|
|
||||||
"toolbar_field_border_focus": "#FE640B",
|
|
||||||
"toolbar_top_separator": "#CCD0DA",
|
|
||||||
"toolbar_bottom_separator": "#CCD0DA",
|
|
||||||
"toolbar_vertical_separator": "#CCD0DA",
|
|
||||||
"sidebar": "#EFF1F5",
|
|
||||||
"sidebar_text": "#4C4F69",
|
|
||||||
"sidebar_highlight": "#FE640B",
|
|
||||||
"sidebar_highlight_text": "#E6E9EF",
|
|
||||||
"sidebar_border": "#CCD0DA",
|
|
||||||
"popup": "#CCD0DA",
|
|
||||||
"popup_text": "#4C4F69",
|
|
||||||
"popup_border": "#EFF1F5",
|
|
||||||
"popup_highlight": "#FE640B",
|
|
||||||
"popup_highlight_text": "#E6E9EF"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
Before Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 5.7 KiB |
Before Width: | Height: | Size: 12 KiB |
@ -1,54 +0,0 @@
|
|||||||
{
|
|
||||||
"manifest_version": 2,
|
|
||||||
"name": "Catppuccin-Latte-Pink Thunderbird Theme",
|
|
||||||
"version": "1.0.0",
|
|
||||||
"applications": {
|
|
||||||
"gecko": {
|
|
||||||
"id": "elkrien@gmail.com",
|
|
||||||
"strict_min_version": "60.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"description": "Catppuccin theme for Thunderbird - Latte Pink",
|
|
||||||
"icons": {
|
|
||||||
"16": "images/icon16.png",
|
|
||||||
"48": "images/icon48.png",
|
|
||||||
"128": "images/icon128.png"
|
|
||||||
},
|
|
||||||
"theme": {
|
|
||||||
"colors": {
|
|
||||||
"frame": "#EFF1F5",
|
|
||||||
"button_background_active": "#EA76CB",
|
|
||||||
"button_background_hover": "#CCD0DA",
|
|
||||||
"icons": "#4C4F69",
|
|
||||||
"tab_text": "#4C4F69",
|
|
||||||
"tab_line": "#EA76CB",
|
|
||||||
"tab_loading": "#EA76CB",
|
|
||||||
"tab_selected": "#EFF1F5",
|
|
||||||
"tab_background_text": "#6C6F85",
|
|
||||||
"tab_background_separator": "#CCD0DA",
|
|
||||||
"bookmark_text": "#4C4F69",
|
|
||||||
"toolbar": "#EFF1F5",
|
|
||||||
"toolbar_field": "#CCD0DA",
|
|
||||||
"toolbar_field_text": "#4C4F69",
|
|
||||||
"toolbar_field_highlight": "#EA76CB",
|
|
||||||
"toolbar_field_highlight_text": "#E6E9EF",
|
|
||||||
"toolbar_field_border": "#E6E9EF",
|
|
||||||
"toolbar_field_focus": "#CCD0DA",
|
|
||||||
"toolbar_field_text_focus": "#4C4F69",
|
|
||||||
"toolbar_field_border_focus": "#EA76CB",
|
|
||||||
"toolbar_top_separator": "#CCD0DA",
|
|
||||||
"toolbar_bottom_separator": "#CCD0DA",
|
|
||||||
"toolbar_vertical_separator": "#CCD0DA",
|
|
||||||
"sidebar": "#EFF1F5",
|
|
||||||
"sidebar_text": "#4C4F69",
|
|
||||||
"sidebar_highlight": "#EA76CB",
|
|
||||||
"sidebar_highlight_text": "#E6E9EF",
|
|
||||||
"sidebar_border": "#CCD0DA",
|
|
||||||
"popup": "#CCD0DA",
|
|
||||||
"popup_text": "#4C4F69",
|
|
||||||
"popup_border": "#EFF1F5",
|
|
||||||
"popup_highlight": "#EA76CB",
|
|
||||||
"popup_highlight_text": "#E6E9EF"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
Before Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 5.7 KiB |