diff --git a/CHANGELOG.md b/CHANGELOG.md index 663dbd7d..28f6adef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ Changelog --- # Unreleased + +# 15.0.2 [Firefox History Sidebar Theming] + +- Themes the Firefox's history sidebar ([#75](https://github.com/doki-theme/doki-theme-web/issues/75)) + # 15.0.1 [Firefox: Theming Bug Fixes] - Fix tabs not being randomized when creating tabs rapidly in mixed mode. - Fixes text selection & scrollbar not loading appropriately with their individual tab in mixed mode. diff --git a/buildSrc/assets/templates/firefox.theme.template.json b/buildSrc/assets/templates/firefox.theme.template.json index 41233ac3..c3e088cb 100644 --- a/buildSrc/assets/templates/firefox.theme.template.json +++ b/buildSrc/assets/templates/firefox.theme.template.json @@ -16,6 +16,11 @@ "popup_highlight": "&selectionBackground&", "popup_highlight_text": "&selectionForeground&", "popup_text": "&foregroundColor&", + "sidebar":"&secondaryBackground&", + "sidebar_highlight":"&selectionBackground&", + "sidebar_highlight_text":"&selectionForeground&", + "sidebar_border":"&borderColor&", + "sidebar_text": "&foregroundColor&", "tab_background_separator": "&borderColor&", "tab_line": "&accentColor&", "tab_loading": "&accentColor&", diff --git a/buildSrc/assets/templates/manifest.template.json b/buildSrc/assets/templates/manifest.template.json index 9494d069..556efbfd 100644 --- a/buildSrc/assets/templates/manifest.template.json +++ b/buildSrc/assets/templates/manifest.template.json @@ -1,6 +1,6 @@ { "name": "The Doki Theme", - "version": "15.0.0", + "version": "15.0.2", "description": "Anime based themes for your chrome browser!", "theme": { "images": { diff --git a/buildSrc/package.json b/buildSrc/package.json index 1fb6d58c..b98c75cf 100644 --- a/buildSrc/package.json +++ b/buildSrc/package.json @@ -13,7 +13,7 @@ "@types/lodash": "^4.14.155", "@types/ncp": "^2.0.4", "copy-webpack-plugin": "^6.0.2", - "doki-build-source": "1.3.0", + "doki-build-source": "1.6.0", "jest": "^26.0.1", "rimraf": "^3.0.2", "ts-jest": "^26.1.0", diff --git a/buildSrc/src/BuildThemes.ts b/buildSrc/src/BuildThemes.ts index 88025a8d..cccc1875 100644 --- a/buildSrc/src/BuildThemes.ts +++ b/buildSrc/src/BuildThemes.ts @@ -603,7 +603,7 @@ preBuild() console.log('Theme Generation Complete!'); }); -function getBackgrounds(dokiDefinition: { colors: StringDictionary; id: string; name: string; displayName: string; dark: boolean; author: string; group: string; overrides?: import("/home/alex/workspace/doki-build-source/lib/cjs/types").Overrides | undefined; product?: "community" | "ultimate" | undefined; stickers: import("/home/alex/workspace/doki-build-source/lib/cjs/types").Stickers; editorScheme?: import("/home/alex/workspace/doki-build-source/lib/cjs/types").EditorScheme | undefined; }, dokiTheme: { path: string; definition: { colors: StringDictionary; id: string; name: string; displayName: string; dark: boolean; author: string; group: string; overrides?: import("/home/alex/workspace/doki-build-source/lib/cjs/types").Overrides | undefined; product?: "community" | "ultimate" | undefined; stickers: import("/home/alex/workspace/doki-build-source/lib/cjs/types").Stickers; editorScheme?: import("/home/alex/workspace/doki-build-source/lib/cjs/types").EditorScheme | undefined; }; manifest: ManifestTemplate; fireFoxTheme: FireFoxTheme; theme: {}; chromeDefinition: BaseAppDokiThemeDefinition; }, relativeFireFoxAssetPath: string) { +function getBackgrounds(dokiDefinition: { colors: StringDictionary; id: string; name: string; displayName: string; dark: boolean; author: string; group: string; overrides?: any | undefined; product?: "community" | "ultimate" | undefined; stickers: any; editorScheme?: any | undefined; }, dokiTheme: { path: string; definition: { colors: StringDictionary; id: string; name: string; displayName: string; dark: boolean; author: string; group: string; overrides?: any | undefined; product?: "community" | "ultimate" | undefined; stickers: any; editorScheme?: any | undefined; }; manifest: ManifestTemplate; fireFoxTheme: FireFoxTheme; theme: {}; chromeDefinition: BaseAppDokiThemeDefinition; }, relativeFireFoxAssetPath: string) { const stickers = getStickers(dokiDefinition, dokiTheme); if (isKanna(dokiDefinition)) { @@ -627,6 +627,6 @@ function getName(dokiDefinition: MasterDokiThemeDefinition) { return dokiDefinition.name.replace(':', ''); } -function isKanna(dokiDefinition: { colors: StringDictionary; id: string; name: string; displayName: string; dark: boolean; author: string; group: string; overrides?: import("/home/alex/workspace/doki-build-source/lib/cjs/types").Overrides | undefined; product?: "community" | "ultimate" | undefined; stickers: import("/home/alex/workspace/doki-build-source/lib/cjs/types").Stickers; editorScheme?: import("/home/alex/workspace/doki-build-source/lib/cjs/types").EditorScheme | undefined; }): boolean { +function isKanna(dokiDefinition: { colors: StringDictionary; id: string; name: string; displayName: string; dark: boolean; author: string; group: string; overrides?: any | undefined; product?: "community" | "ultimate" | undefined; stickers: any; editorScheme?: any | undefined; }): boolean { return dokiDefinition.id === "b93ab4ea-ff96-4459-8fa2-0caae5bc7116" } diff --git a/buildSrc/yarn.lock b/buildSrc/yarn.lock index bed02ea5..9cfb74a5 100644 --- a/buildSrc/yarn.lock +++ b/buildSrc/yarn.lock @@ -2168,10 +2168,10 @@ dir-glob@^3.0.1: dependencies: path-type "^4.0.0" -doki-build-source@1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/doki-build-source/-/doki-build-source-1.3.0.tgz#b7516a96317ff559737f6e87fc81b931bbb1977c" - integrity sha512-3Z+BMS0p/FGOlCwuhBauAYeV+DXAF+5HdkMCVSYCYZkbLsqfsymnBM7Unw+vbrHJfI14P0gDuOTbgKOHX9V4Gw== +doki-build-source@1.6.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/doki-build-source/-/doki-build-source-1.6.0.tgz#5c39cf71e135714ae891301c56c648cc9447ac2a" + integrity sha512-jyP9xCNam3fq68lR1G2JVfCV9HSQX0ygfG9RAi2IohIUJNYE9YGDJk5YDxQ7uxEERSLXg/NjMpCOwFFswcBi5A== dom-walk@^0.1.0: version "0.1.2" diff --git a/chromeThemes/Aqua's Theme/manifest.json b/chromeThemes/Aqua's Theme/manifest.json index 230a6c4c..3eb5eff1 100644 --- a/chromeThemes/Aqua's Theme/manifest.json +++ b/chromeThemes/Aqua's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Aqua", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Aqua from KonoSuba", "theme": { "images": { diff --git a/chromeThemes/Astolfo's Theme/manifest.json b/chromeThemes/Astolfo's Theme/manifest.json index 48ef0720..8cf387fa 100644 --- a/chromeThemes/Astolfo's Theme/manifest.json +++ b/chromeThemes/Astolfo's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Astolfo", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Astolfo from Fate", "theme": { "images": { diff --git a/chromeThemes/Asuna Dark's Theme/manifest.json b/chromeThemes/Asuna Dark's Theme/manifest.json index b72c4df1..b24bf2cc 100644 --- a/chromeThemes/Asuna Dark's Theme/manifest.json +++ b/chromeThemes/Asuna Dark's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Asuna Dark", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Asuna from Sword Art Online", "theme": { "images": { diff --git a/chromeThemes/Asuna Light's Theme/manifest.json b/chromeThemes/Asuna Light's Theme/manifest.json index b194ea1c..2610dce0 100644 --- a/chromeThemes/Asuna Light's Theme/manifest.json +++ b/chromeThemes/Asuna Light's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Asuna Light", - "version": "15.0.0", + "version": "15.0.2", "description": "A light theme modeled after Asuna from Sword Art Online", "theme": { "images": { diff --git a/chromeThemes/Azuki's Theme/manifest.json b/chromeThemes/Azuki's Theme/manifest.json index 1b0276de..bafbe080 100644 --- a/chromeThemes/Azuki's Theme/manifest.json +++ b/chromeThemes/Azuki's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Azuki", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Azuki from NekoPara", "theme": { "images": { diff --git a/chromeThemes/Beatrice's Theme/manifest.json b/chromeThemes/Beatrice's Theme/manifest.json index 23fabe5d..12935866 100644 --- a/chromeThemes/Beatrice's Theme/manifest.json +++ b/chromeThemes/Beatrice's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Beatrice", - "version": "15.0.0", + "version": "15.0.2", "description": "A light theme modeled after Beatrice from Re Zero", "theme": { "images": { diff --git a/chromeThemes/Chocola's Theme/manifest.json b/chromeThemes/Chocola's Theme/manifest.json index 53342712..ab205c17 100644 --- a/chromeThemes/Chocola's Theme/manifest.json +++ b/chromeThemes/Chocola's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Chocola", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Chocola from NekoPara", "theme": { "images": { diff --git a/chromeThemes/Cinnamon's Theme/manifest.json b/chromeThemes/Cinnamon's Theme/manifest.json index 8a3635ff..b2377209 100644 --- a/chromeThemes/Cinnamon's Theme/manifest.json +++ b/chromeThemes/Cinnamon's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Cinnamon", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Cinnamon from NekoPara", "theme": { "images": { diff --git a/chromeThemes/Coconut's Theme/manifest.json b/chromeThemes/Coconut's Theme/manifest.json index 3f93cf67..5c6ef132 100644 --- a/chromeThemes/Coconut's Theme/manifest.json +++ b/chromeThemes/Coconut's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Coconut", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Coconut from NekoPara", "theme": { "images": { diff --git a/chromeThemes/Darkness Dark's Theme/manifest.json b/chromeThemes/Darkness Dark's Theme/manifest.json index 08ea98a2..d8de170b 100644 --- a/chromeThemes/Darkness Dark's Theme/manifest.json +++ b/chromeThemes/Darkness Dark's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Darkness Dark", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Darkness from KonoSuba", "theme": { "images": { diff --git a/chromeThemes/Darkness Light's Theme/manifest.json b/chromeThemes/Darkness Light's Theme/manifest.json index b88c6063..699ca6a9 100644 --- a/chromeThemes/Darkness Light's Theme/manifest.json +++ b/chromeThemes/Darkness Light's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Darkness Light", - "version": "15.0.0", + "version": "15.0.2", "description": "A light theme modeled after Darkness from KonoSuba", "theme": { "images": { diff --git a/chromeThemes/Echidna's Theme/manifest.json b/chromeThemes/Echidna's Theme/manifest.json index 81e1e7b4..a46be00b 100644 --- a/chromeThemes/Echidna's Theme/manifest.json +++ b/chromeThemes/Echidna's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Echidna", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Echidna from Re Zero", "theme": { "images": { diff --git a/chromeThemes/Emilia Dark's Theme/manifest.json b/chromeThemes/Emilia Dark's Theme/manifest.json index 5375d72c..f328d442 100644 --- a/chromeThemes/Emilia Dark's Theme/manifest.json +++ b/chromeThemes/Emilia Dark's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Emilia Dark", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Emilia from Re Zero", "theme": { "images": { diff --git a/chromeThemes/Emilia Light's Theme/manifest.json b/chromeThemes/Emilia Light's Theme/manifest.json index c442bf78..c1cdf0b6 100644 --- a/chromeThemes/Emilia Light's Theme/manifest.json +++ b/chromeThemes/Emilia Light's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Emilia Light", - "version": "15.0.0", + "version": "15.0.2", "description": "A light theme modeled after Emilia from Re Zero", "theme": { "images": { diff --git a/chromeThemes/Gasai Yuno's Theme/manifest.json b/chromeThemes/Gasai Yuno's Theme/manifest.json index 87e9292f..b8a09639 100644 --- a/chromeThemes/Gasai Yuno's Theme/manifest.json +++ b/chromeThemes/Gasai Yuno's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Gasai Yuno", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Yuno from Future Diary", "theme": { "images": { diff --git a/chromeThemes/Gray's Theme/manifest.json b/chromeThemes/Gray's Theme/manifest.json index 9b7261c2..da9e7954 100644 --- a/chromeThemes/Gray's Theme/manifest.json +++ b/chromeThemes/Gray's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Gray", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Gray from Type-Moon", "theme": { "images": { diff --git a/chromeThemes/Hanekawa Tsubasa's Theme/manifest.json b/chromeThemes/Hanekawa Tsubasa's Theme/manifest.json index 89aeeece..249f4b9c 100644 --- a/chromeThemes/Hanekawa Tsubasa's Theme/manifest.json +++ b/chromeThemes/Hanekawa Tsubasa's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Hanekawa Tsubasa", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Tsubasa from Monogatari", "theme": { "images": { diff --git a/chromeThemes/Hatsune Miku's Theme/manifest.json b/chromeThemes/Hatsune Miku's Theme/manifest.json index 85764537..332c237b 100644 --- a/chromeThemes/Hatsune Miku's Theme/manifest.json +++ b/chromeThemes/Hatsune Miku's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Hatsune Miku", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Miku from Vocaloid", "theme": { "images": { diff --git a/chromeThemes/Hayase Nagatoro's Theme/manifest.json b/chromeThemes/Hayase Nagatoro's Theme/manifest.json index 4751eb2a..40bcfe76 100644 --- a/chromeThemes/Hayase Nagatoro's Theme/manifest.json +++ b/chromeThemes/Hayase Nagatoro's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Hayase Nagatoro", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Nagatoro from Don't Toy with me Miss Nagatoro", "theme": { "images": { diff --git a/chromeThemes/Ishtar Dark's Theme/manifest.json b/chromeThemes/Ishtar Dark's Theme/manifest.json index f7ce25aa..4f7babd4 100644 --- a/chromeThemes/Ishtar Dark's Theme/manifest.json +++ b/chromeThemes/Ishtar Dark's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Ishtar Dark", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Ishtar from Fate", "theme": { "images": { diff --git a/chromeThemes/Ishtar Light's Theme/manifest.json b/chromeThemes/Ishtar Light's Theme/manifest.json index e0abd80b..6debe060 100644 --- a/chromeThemes/Ishtar Light's Theme/manifest.json +++ b/chromeThemes/Ishtar Light's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Ishtar Light", - "version": "15.0.0", + "version": "15.0.2", "description": "A light theme modeled after Ishtar from Fate", "theme": { "images": { diff --git a/chromeThemes/Jabami Yumeko's Theme/manifest.json b/chromeThemes/Jabami Yumeko's Theme/manifest.json index 65587add..9974d9ba 100644 --- a/chromeThemes/Jabami Yumeko's Theme/manifest.json +++ b/chromeThemes/Jabami Yumeko's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Jabami Yumeko", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Yumeko from Kakegurui", "theme": { "images": { diff --git a/chromeThemes/Kanna's Theme/manifest.json b/chromeThemes/Kanna's Theme/manifest.json index 8e07b6f5..78e018dc 100644 --- a/chromeThemes/Kanna's Theme/manifest.json +++ b/chromeThemes/Kanna's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Kanna", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Kanna from Miss Kobayashi's Dragon Maid", "theme": { "images": { diff --git a/chromeThemes/Katsuragi Misato's Theme/manifest.json b/chromeThemes/Katsuragi Misato's Theme/manifest.json index 7dcfa3e4..38d20dea 100644 --- a/chromeThemes/Katsuragi Misato's Theme/manifest.json +++ b/chromeThemes/Katsuragi Misato's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Katsuragi Misato", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Misato from Evangelion", "theme": { "images": { diff --git a/chromeThemes/Kirino's Theme/manifest.json b/chromeThemes/Kirino's Theme/manifest.json index b57cff37..ae659f0b 100644 --- a/chromeThemes/Kirino's Theme/manifest.json +++ b/chromeThemes/Kirino's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Kirino", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Kirino from OreImo", "theme": { "images": { diff --git a/chromeThemes/Konata's Theme/manifest.json b/chromeThemes/Konata's Theme/manifest.json index 227d97d0..2658e192 100644 --- a/chromeThemes/Konata's Theme/manifest.json +++ b/chromeThemes/Konata's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Konata", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Konata from Lucky Star", "theme": { "images": { diff --git a/chromeThemes/Mai Dark's Theme/manifest.json b/chromeThemes/Mai Dark's Theme/manifest.json index ec7d66ff..012b01b6 100644 --- a/chromeThemes/Mai Dark's Theme/manifest.json +++ b/chromeThemes/Mai Dark's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Mai Dark", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Mai from Bunny Senpai", "theme": { "images": { diff --git a/chromeThemes/Mai Light's Theme/manifest.json b/chromeThemes/Mai Light's Theme/manifest.json index 1542c96f..d7f9e7e1 100644 --- a/chromeThemes/Mai Light's Theme/manifest.json +++ b/chromeThemes/Mai Light's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Mai Light", - "version": "15.0.0", + "version": "15.0.2", "description": "A light theme modeled after Mai from Bunny Senpai", "theme": { "images": { diff --git a/chromeThemes/Maika's Theme/manifest.json b/chromeThemes/Maika's Theme/manifest.json index 6a2a042d..fc03d5fb 100644 --- a/chromeThemes/Maika's Theme/manifest.json +++ b/chromeThemes/Maika's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Maika", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Maika from Blend S", "theme": { "images": { diff --git a/chromeThemes/Makise Kurisu's Theme/manifest.json b/chromeThemes/Makise Kurisu's Theme/manifest.json index 2bb15220..e2b1aaee 100644 --- a/chromeThemes/Makise Kurisu's Theme/manifest.json +++ b/chromeThemes/Makise Kurisu's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Makise Kurisu", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Kurisu from Steins Gate", "theme": { "images": { diff --git a/chromeThemes/Maple Dark's Theme/manifest.json b/chromeThemes/Maple Dark's Theme/manifest.json index 7b522ab2..054ba211 100644 --- a/chromeThemes/Maple Dark's Theme/manifest.json +++ b/chromeThemes/Maple Dark's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Maple Dark", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Maple from NekoPara", "theme": { "images": { diff --git a/chromeThemes/Maple Light's Theme/manifest.json b/chromeThemes/Maple Light's Theme/manifest.json index 9aa5e933..033ece77 100644 --- a/chromeThemes/Maple Light's Theme/manifest.json +++ b/chromeThemes/Maple Light's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Maple Light", - "version": "15.0.0", + "version": "15.0.2", "description": "A light theme modeled after Maple from NekoPara", "theme": { "images": { diff --git a/chromeThemes/Megumin's Theme/manifest.json b/chromeThemes/Megumin's Theme/manifest.json index 24b4de95..782673a3 100644 --- a/chromeThemes/Megumin's Theme/manifest.json +++ b/chromeThemes/Megumin's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Megumin", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Megumin from KonoSuba", "theme": { "images": { diff --git a/chromeThemes/Miia's Theme/manifest.json b/chromeThemes/Miia's Theme/manifest.json index d1800ecf..12f1bf80 100644 --- a/chromeThemes/Miia's Theme/manifest.json +++ b/chromeThemes/Miia's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Miia", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Miia from Daily Life With A Monster Girl", "theme": { "images": { diff --git a/chromeThemes/Mioda Ibuki Dark's Theme/manifest.json b/chromeThemes/Mioda Ibuki Dark's Theme/manifest.json index 2d571dd4..62266035 100644 --- a/chromeThemes/Mioda Ibuki Dark's Theme/manifest.json +++ b/chromeThemes/Mioda Ibuki Dark's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Mioda Ibuki Dark", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Ibuki from DanganRonpa", "theme": { "images": { diff --git a/chromeThemes/Mioda Ibuki Light's Theme/manifest.json b/chromeThemes/Mioda Ibuki Light's Theme/manifest.json index 82ad3f2d..2d4e51f4 100644 --- a/chromeThemes/Mioda Ibuki Light's Theme/manifest.json +++ b/chromeThemes/Mioda Ibuki Light's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Mioda Ibuki Light", - "version": "15.0.0", + "version": "15.0.2", "description": "A light theme modeled after Ibuki from DanganRonpa", "theme": { "images": { diff --git a/chromeThemes/Monika Dark's Theme/manifest.json b/chromeThemes/Monika Dark's Theme/manifest.json index 1ba99df5..06aa082d 100644 --- a/chromeThemes/Monika Dark's Theme/manifest.json +++ b/chromeThemes/Monika Dark's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Monika Dark", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Monika from Literature Club", "theme": { "images": { diff --git a/chromeThemes/Monika Light's Theme/manifest.json b/chromeThemes/Monika Light's Theme/manifest.json index 2e7101a0..046b4f82 100644 --- a/chromeThemes/Monika Light's Theme/manifest.json +++ b/chromeThemes/Monika Light's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Monika Light", - "version": "15.0.0", + "version": "15.0.2", "description": "A light theme modeled after Monika from Literature Club", "theme": { "images": { diff --git a/chromeThemes/Nakano Miku's Theme/manifest.json b/chromeThemes/Nakano Miku's Theme/manifest.json index c2749782..7adb3c27 100644 --- a/chromeThemes/Nakano Miku's Theme/manifest.json +++ b/chromeThemes/Nakano Miku's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Nakano Miku", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Miku from Quintessential Quintuplets", "theme": { "images": { diff --git a/chromeThemes/Nakano Nino's Theme/manifest.json b/chromeThemes/Nakano Nino's Theme/manifest.json index 79f051fe..256786cc 100644 --- a/chromeThemes/Nakano Nino's Theme/manifest.json +++ b/chromeThemes/Nakano Nino's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Nakano Nino", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Nino from Quintessential Quintuplets", "theme": { "images": { diff --git a/chromeThemes/Natsuki Dark's Theme/manifest.json b/chromeThemes/Natsuki Dark's Theme/manifest.json index 0812defc..499e0738 100644 --- a/chromeThemes/Natsuki Dark's Theme/manifest.json +++ b/chromeThemes/Natsuki Dark's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Natsuki Dark", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Natsuki from Literature Club", "theme": { "images": { diff --git a/chromeThemes/Natsuki Light's Theme/manifest.json b/chromeThemes/Natsuki Light's Theme/manifest.json index 352d694a..8563a50d 100644 --- a/chromeThemes/Natsuki Light's Theme/manifest.json +++ b/chromeThemes/Natsuki Light's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Natsuki Light", - "version": "15.0.0", + "version": "15.0.2", "description": "A light theme modeled after Natsuki from Literature Club", "theme": { "images": { diff --git a/chromeThemes/Ram's Theme/manifest.json b/chromeThemes/Ram's Theme/manifest.json index b52fbea3..07dd432c 100644 --- a/chromeThemes/Ram's Theme/manifest.json +++ b/chromeThemes/Ram's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Ram", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Ram from Re Zero", "theme": { "images": { diff --git a/chromeThemes/Rei's Theme/manifest.json b/chromeThemes/Rei's Theme/manifest.json index 2c403d76..3027c13b 100644 --- a/chromeThemes/Rei's Theme/manifest.json +++ b/chromeThemes/Rei's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Rei", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Rei from Evangelion", "theme": { "images": { diff --git a/chromeThemes/Rem's Theme/manifest.json b/chromeThemes/Rem's Theme/manifest.json index 450a7952..5aa47c49 100644 --- a/chromeThemes/Rem's Theme/manifest.json +++ b/chromeThemes/Rem's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Rem", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Rem from Re Zero", "theme": { "images": { diff --git a/chromeThemes/Rias Crimson's Theme/manifest.json b/chromeThemes/Rias Crimson's Theme/manifest.json index 05784399..32533f11 100644 --- a/chromeThemes/Rias Crimson's Theme/manifest.json +++ b/chromeThemes/Rias Crimson's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Rias: Crimson", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Rias from High School DxD", "theme": { "images": { diff --git a/chromeThemes/Rias Onyx's Theme/manifest.json b/chromeThemes/Rias Onyx's Theme/manifest.json index e6cf7150..c6d08a4e 100644 --- a/chromeThemes/Rias Onyx's Theme/manifest.json +++ b/chromeThemes/Rias Onyx's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Rias: Onyx", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Rias from High School DxD", "theme": { "images": { diff --git a/chromeThemes/Rory Mercury's Theme/manifest.json b/chromeThemes/Rory Mercury's Theme/manifest.json index e6d4c6a0..269f6088 100644 --- a/chromeThemes/Rory Mercury's Theme/manifest.json +++ b/chromeThemes/Rory Mercury's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Rory Mercury", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Rory from Gate", "theme": { "images": { diff --git a/chromeThemes/Ryuko Dark's Theme/manifest.json b/chromeThemes/Ryuko Dark's Theme/manifest.json index 7671e9d0..0290204e 100644 --- a/chromeThemes/Ryuko Dark's Theme/manifest.json +++ b/chromeThemes/Ryuko Dark's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Ryuko Dark", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Ryuko from Kill la Kill", "theme": { "images": { diff --git a/chromeThemes/Ryuko Light's Theme/manifest.json b/chromeThemes/Ryuko Light's Theme/manifest.json index 307fb22c..9adcdcb7 100644 --- a/chromeThemes/Ryuko Light's Theme/manifest.json +++ b/chromeThemes/Ryuko Light's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Ryuko Light", - "version": "15.0.0", + "version": "15.0.2", "description": "A light theme modeled after Ryuko from Kill la Kill", "theme": { "images": { diff --git a/chromeThemes/Sagiri's Theme/manifest.json b/chromeThemes/Sagiri's Theme/manifest.json index 3c331056..d58e5ddb 100644 --- a/chromeThemes/Sagiri's Theme/manifest.json +++ b/chromeThemes/Sagiri's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Sagiri", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Sagiri from EroManga Sensei", "theme": { "images": { diff --git a/chromeThemes/Satsuki Dark's Theme/manifest.json b/chromeThemes/Satsuki Dark's Theme/manifest.json index 8c29e3b5..a1cfa661 100644 --- a/chromeThemes/Satsuki Dark's Theme/manifest.json +++ b/chromeThemes/Satsuki Dark's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Satsuki Dark", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Satsuki from Kill la Kill", "theme": { "images": { diff --git a/chromeThemes/Satsuki Light's Theme/manifest.json b/chromeThemes/Satsuki Light's Theme/manifest.json index dfe82f3b..ad707eab 100644 --- a/chromeThemes/Satsuki Light's Theme/manifest.json +++ b/chromeThemes/Satsuki Light's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Satsuki Light", - "version": "15.0.0", + "version": "15.0.2", "description": "A light theme modeled after Satsuki from Kill la Kill", "theme": { "images": { diff --git a/chromeThemes/Sayori Dark's Theme/manifest.json b/chromeThemes/Sayori Dark's Theme/manifest.json index 22b57677..028f520c 100644 --- a/chromeThemes/Sayori Dark's Theme/manifest.json +++ b/chromeThemes/Sayori Dark's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Sayori Dark", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Š̸̘͚̼͎̯̙̣̱̎̋̐͒a̴̖̟̠̳̤͙̟͂̂͑̐͜ỷ̵̧̨̞̠̖̠o̴̧͍̗̬̎̓͆̔͝ͅr̴̡̮̟͈͠ͅi̴̡̨͓͈̬̗̺̍́̃̇̓ from Literature Club", "theme": { "images": { diff --git a/chromeThemes/Sayori Light's Theme/manifest.json b/chromeThemes/Sayori Light's Theme/manifest.json index 7d826831..c9e3a21e 100644 --- a/chromeThemes/Sayori Light's Theme/manifest.json +++ b/chromeThemes/Sayori Light's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Sayori Light", - "version": "15.0.0", + "version": "15.0.2", "description": "A light theme modeled after Sayori from Literature Club", "theme": { "images": { diff --git a/chromeThemes/Shigure's Theme/manifest.json b/chromeThemes/Shigure's Theme/manifest.json index d21edc99..9f7ede9f 100644 --- a/chromeThemes/Shigure's Theme/manifest.json +++ b/chromeThemes/Shigure's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Shigure", - "version": "15.0.0", + "version": "15.0.2", "description": "A light theme modeled after Shigure from NekoPara", "theme": { "images": { diff --git a/chromeThemes/Shima Rin's Theme/manifest.json b/chromeThemes/Shima Rin's Theme/manifest.json index 44785071..27fc7658 100644 --- a/chromeThemes/Shima Rin's Theme/manifest.json +++ b/chromeThemes/Shima Rin's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Shima Rin", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Rin from Yuru Camp", "theme": { "images": { diff --git a/chromeThemes/Sonoda Umi's Theme/manifest.json b/chromeThemes/Sonoda Umi's Theme/manifest.json index 92d504be..0f0fe2dc 100644 --- a/chromeThemes/Sonoda Umi's Theme/manifest.json +++ b/chromeThemes/Sonoda Umi's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Sonoda Umi", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Umi from Love Live", "theme": { "images": { diff --git a/chromeThemes/Tohru's Theme/manifest.json b/chromeThemes/Tohru's Theme/manifest.json index 831b635e..35cb8063 100644 --- a/chromeThemes/Tohru's Theme/manifest.json +++ b/chromeThemes/Tohru's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Tohru", - "version": "15.0.0", + "version": "15.0.2", "description": "A light theme modeled after Tohru from Miss Kobayashi's Dragon Maid", "theme": { "images": { diff --git a/chromeThemes/Tohsaka Rin's Theme/manifest.json b/chromeThemes/Tohsaka Rin's Theme/manifest.json index dd9dd76a..d3236104 100644 --- a/chromeThemes/Tohsaka Rin's Theme/manifest.json +++ b/chromeThemes/Tohsaka Rin's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Tohsaka Rin", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Rin from Fate", "theme": { "images": { diff --git a/chromeThemes/Vanilla's Theme/manifest.json b/chromeThemes/Vanilla's Theme/manifest.json index 092afb3f..48675690 100644 --- a/chromeThemes/Vanilla's Theme/manifest.json +++ b/chromeThemes/Vanilla's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Vanilla", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Vanilla from NekoPara", "theme": { "images": { diff --git a/chromeThemes/Yukinoshita Yukino's Theme/manifest.json b/chromeThemes/Yukinoshita Yukino's Theme/manifest.json index 51074988..95e1acb1 100644 --- a/chromeThemes/Yukinoshita Yukino's Theme/manifest.json +++ b/chromeThemes/Yukinoshita Yukino's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Yukinoshita Yukino", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Yukino from OreGairu", "theme": { "images": { diff --git a/chromeThemes/Yuri Dark's Theme/manifest.json b/chromeThemes/Yuri Dark's Theme/manifest.json index 3817afa3..4c4c74ae 100644 --- a/chromeThemes/Yuri Dark's Theme/manifest.json +++ b/chromeThemes/Yuri Dark's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Yuri Dark", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Yuri from Literature Club", "theme": { "images": { diff --git a/chromeThemes/Yuri Light's Theme/manifest.json b/chromeThemes/Yuri Light's Theme/manifest.json index 4852936d..ff797d28 100644 --- a/chromeThemes/Yuri Light's Theme/manifest.json +++ b/chromeThemes/Yuri Light's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Yuri Light", - "version": "15.0.0", + "version": "15.0.2", "description": "A light theme modeled after Yuri from Literature Club", "theme": { "images": { diff --git a/chromeThemes/Zero Two Dark's Theme/manifest.json b/chromeThemes/Zero Two Dark's Theme/manifest.json index ce055735..5789af9b 100644 --- a/chromeThemes/Zero Two Dark's Theme/manifest.json +++ b/chromeThemes/Zero Two Dark's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Zero Two Dark", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Zero Two from Darling in the Franxx", "theme": { "images": { diff --git a/chromeThemes/Zero Two Light's Theme/manifest.json b/chromeThemes/Zero Two Light's Theme/manifest.json index 7dbb79e0..f3a0e019 100644 --- a/chromeThemes/Zero Two Light's Theme/manifest.json +++ b/chromeThemes/Zero Two Light's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Zero Two Light", - "version": "15.0.0", + "version": "15.0.2", "description": "A light theme modeled after Zero Two from Darling in the Franxx", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Aqua's Theme/manifest.json b/chromeThemes_2560x1440/Aqua's Theme/manifest.json index 230a6c4c..3eb5eff1 100644 --- a/chromeThemes_2560x1440/Aqua's Theme/manifest.json +++ b/chromeThemes_2560x1440/Aqua's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Aqua", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Aqua from KonoSuba", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Astolfo's Theme/manifest.json b/chromeThemes_2560x1440/Astolfo's Theme/manifest.json index 48ef0720..8cf387fa 100644 --- a/chromeThemes_2560x1440/Astolfo's Theme/manifest.json +++ b/chromeThemes_2560x1440/Astolfo's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Astolfo", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Astolfo from Fate", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Asuna Dark's Theme/manifest.json b/chromeThemes_2560x1440/Asuna Dark's Theme/manifest.json index b72c4df1..b24bf2cc 100644 --- a/chromeThemes_2560x1440/Asuna Dark's Theme/manifest.json +++ b/chromeThemes_2560x1440/Asuna Dark's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Asuna Dark", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Asuna from Sword Art Online", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Asuna Light's Theme/manifest.json b/chromeThemes_2560x1440/Asuna Light's Theme/manifest.json index b194ea1c..2610dce0 100644 --- a/chromeThemes_2560x1440/Asuna Light's Theme/manifest.json +++ b/chromeThemes_2560x1440/Asuna Light's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Asuna Light", - "version": "15.0.0", + "version": "15.0.2", "description": "A light theme modeled after Asuna from Sword Art Online", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Azuki's Theme/manifest.json b/chromeThemes_2560x1440/Azuki's Theme/manifest.json index 1b0276de..bafbe080 100644 --- a/chromeThemes_2560x1440/Azuki's Theme/manifest.json +++ b/chromeThemes_2560x1440/Azuki's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Azuki", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Azuki from NekoPara", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Chocola's Theme/manifest.json b/chromeThemes_2560x1440/Chocola's Theme/manifest.json index 53342712..ab205c17 100644 --- a/chromeThemes_2560x1440/Chocola's Theme/manifest.json +++ b/chromeThemes_2560x1440/Chocola's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Chocola", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Chocola from NekoPara", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Cinnamon's Theme/manifest.json b/chromeThemes_2560x1440/Cinnamon's Theme/manifest.json index 8a3635ff..b2377209 100644 --- a/chromeThemes_2560x1440/Cinnamon's Theme/manifest.json +++ b/chromeThemes_2560x1440/Cinnamon's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Cinnamon", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Cinnamon from NekoPara", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Coconut's Theme/manifest.json b/chromeThemes_2560x1440/Coconut's Theme/manifest.json index 3f93cf67..5c6ef132 100644 --- a/chromeThemes_2560x1440/Coconut's Theme/manifest.json +++ b/chromeThemes_2560x1440/Coconut's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Coconut", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Coconut from NekoPara", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Darkness Dark's Theme/manifest.json b/chromeThemes_2560x1440/Darkness Dark's Theme/manifest.json index 08ea98a2..d8de170b 100644 --- a/chromeThemes_2560x1440/Darkness Dark's Theme/manifest.json +++ b/chromeThemes_2560x1440/Darkness Dark's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Darkness Dark", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Darkness from KonoSuba", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Darkness Light's Theme/manifest.json b/chromeThemes_2560x1440/Darkness Light's Theme/manifest.json index b88c6063..699ca6a9 100644 --- a/chromeThemes_2560x1440/Darkness Light's Theme/manifest.json +++ b/chromeThemes_2560x1440/Darkness Light's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Darkness Light", - "version": "15.0.0", + "version": "15.0.2", "description": "A light theme modeled after Darkness from KonoSuba", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Echidna's Theme/manifest.json b/chromeThemes_2560x1440/Echidna's Theme/manifest.json index 81e1e7b4..a46be00b 100644 --- a/chromeThemes_2560x1440/Echidna's Theme/manifest.json +++ b/chromeThemes_2560x1440/Echidna's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Echidna", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Echidna from Re Zero", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Emilia Dark's Theme/manifest.json b/chromeThemes_2560x1440/Emilia Dark's Theme/manifest.json index 5375d72c..f328d442 100644 --- a/chromeThemes_2560x1440/Emilia Dark's Theme/manifest.json +++ b/chromeThemes_2560x1440/Emilia Dark's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Emilia Dark", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Emilia from Re Zero", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Emilia Light's Theme/manifest.json b/chromeThemes_2560x1440/Emilia Light's Theme/manifest.json index c442bf78..c1cdf0b6 100644 --- a/chromeThemes_2560x1440/Emilia Light's Theme/manifest.json +++ b/chromeThemes_2560x1440/Emilia Light's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Emilia Light", - "version": "15.0.0", + "version": "15.0.2", "description": "A light theme modeled after Emilia from Re Zero", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Gasai Yuno's Theme/manifest.json b/chromeThemes_2560x1440/Gasai Yuno's Theme/manifest.json index 87e9292f..b8a09639 100644 --- a/chromeThemes_2560x1440/Gasai Yuno's Theme/manifest.json +++ b/chromeThemes_2560x1440/Gasai Yuno's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Gasai Yuno", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Yuno from Future Diary", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Gray's Theme/manifest.json b/chromeThemes_2560x1440/Gray's Theme/manifest.json index 9b7261c2..da9e7954 100644 --- a/chromeThemes_2560x1440/Gray's Theme/manifest.json +++ b/chromeThemes_2560x1440/Gray's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Gray", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Gray from Type-Moon", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Hanekawa Tsubasa's Theme/manifest.json b/chromeThemes_2560x1440/Hanekawa Tsubasa's Theme/manifest.json index 89aeeece..249f4b9c 100644 --- a/chromeThemes_2560x1440/Hanekawa Tsubasa's Theme/manifest.json +++ b/chromeThemes_2560x1440/Hanekawa Tsubasa's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Hanekawa Tsubasa", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Tsubasa from Monogatari", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Hatsune Miku's Theme/manifest.json b/chromeThemes_2560x1440/Hatsune Miku's Theme/manifest.json index 85764537..332c237b 100644 --- a/chromeThemes_2560x1440/Hatsune Miku's Theme/manifest.json +++ b/chromeThemes_2560x1440/Hatsune Miku's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Hatsune Miku", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Miku from Vocaloid", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Hayase Nagatoro's Theme/manifest.json b/chromeThemes_2560x1440/Hayase Nagatoro's Theme/manifest.json index 4751eb2a..40bcfe76 100644 --- a/chromeThemes_2560x1440/Hayase Nagatoro's Theme/manifest.json +++ b/chromeThemes_2560x1440/Hayase Nagatoro's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Hayase Nagatoro", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Nagatoro from Don't Toy with me Miss Nagatoro", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Ishtar Dark's Theme/manifest.json b/chromeThemes_2560x1440/Ishtar Dark's Theme/manifest.json index f7ce25aa..4f7babd4 100644 --- a/chromeThemes_2560x1440/Ishtar Dark's Theme/manifest.json +++ b/chromeThemes_2560x1440/Ishtar Dark's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Ishtar Dark", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Ishtar from Fate", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Ishtar Light's Theme/manifest.json b/chromeThemes_2560x1440/Ishtar Light's Theme/manifest.json index e0abd80b..6debe060 100644 --- a/chromeThemes_2560x1440/Ishtar Light's Theme/manifest.json +++ b/chromeThemes_2560x1440/Ishtar Light's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Ishtar Light", - "version": "15.0.0", + "version": "15.0.2", "description": "A light theme modeled after Ishtar from Fate", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Jabami Yumeko's Theme/manifest.json b/chromeThemes_2560x1440/Jabami Yumeko's Theme/manifest.json index 65587add..9974d9ba 100644 --- a/chromeThemes_2560x1440/Jabami Yumeko's Theme/manifest.json +++ b/chromeThemes_2560x1440/Jabami Yumeko's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Jabami Yumeko", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Yumeko from Kakegurui", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Kanna's Theme/manifest.json b/chromeThemes_2560x1440/Kanna's Theme/manifest.json index 8e07b6f5..78e018dc 100644 --- a/chromeThemes_2560x1440/Kanna's Theme/manifest.json +++ b/chromeThemes_2560x1440/Kanna's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Kanna", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Kanna from Miss Kobayashi's Dragon Maid", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Katsuragi Misato's Theme/manifest.json b/chromeThemes_2560x1440/Katsuragi Misato's Theme/manifest.json index 7dcfa3e4..38d20dea 100644 --- a/chromeThemes_2560x1440/Katsuragi Misato's Theme/manifest.json +++ b/chromeThemes_2560x1440/Katsuragi Misato's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Katsuragi Misato", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Misato from Evangelion", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Kirino's Theme/manifest.json b/chromeThemes_2560x1440/Kirino's Theme/manifest.json index b57cff37..ae659f0b 100644 --- a/chromeThemes_2560x1440/Kirino's Theme/manifest.json +++ b/chromeThemes_2560x1440/Kirino's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Kirino", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Kirino from OreImo", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Konata's Theme/manifest.json b/chromeThemes_2560x1440/Konata's Theme/manifest.json index 227d97d0..2658e192 100644 --- a/chromeThemes_2560x1440/Konata's Theme/manifest.json +++ b/chromeThemes_2560x1440/Konata's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Konata", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Konata from Lucky Star", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Mai Dark's Theme/manifest.json b/chromeThemes_2560x1440/Mai Dark's Theme/manifest.json index ec7d66ff..012b01b6 100644 --- a/chromeThemes_2560x1440/Mai Dark's Theme/manifest.json +++ b/chromeThemes_2560x1440/Mai Dark's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Mai Dark", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Mai from Bunny Senpai", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Mai Light's Theme/manifest.json b/chromeThemes_2560x1440/Mai Light's Theme/manifest.json index 1542c96f..d7f9e7e1 100644 --- a/chromeThemes_2560x1440/Mai Light's Theme/manifest.json +++ b/chromeThemes_2560x1440/Mai Light's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Mai Light", - "version": "15.0.0", + "version": "15.0.2", "description": "A light theme modeled after Mai from Bunny Senpai", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Maika's Theme/manifest.json b/chromeThemes_2560x1440/Maika's Theme/manifest.json index 6a2a042d..fc03d5fb 100644 --- a/chromeThemes_2560x1440/Maika's Theme/manifest.json +++ b/chromeThemes_2560x1440/Maika's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Maika", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Maika from Blend S", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Makise Kurisu's Theme/manifest.json b/chromeThemes_2560x1440/Makise Kurisu's Theme/manifest.json index 2bb15220..e2b1aaee 100644 --- a/chromeThemes_2560x1440/Makise Kurisu's Theme/manifest.json +++ b/chromeThemes_2560x1440/Makise Kurisu's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Makise Kurisu", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Kurisu from Steins Gate", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Maple Dark's Theme/manifest.json b/chromeThemes_2560x1440/Maple Dark's Theme/manifest.json index 7b522ab2..054ba211 100644 --- a/chromeThemes_2560x1440/Maple Dark's Theme/manifest.json +++ b/chromeThemes_2560x1440/Maple Dark's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Maple Dark", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Maple from NekoPara", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Maple Light's Theme/manifest.json b/chromeThemes_2560x1440/Maple Light's Theme/manifest.json index 9aa5e933..033ece77 100644 --- a/chromeThemes_2560x1440/Maple Light's Theme/manifest.json +++ b/chromeThemes_2560x1440/Maple Light's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Maple Light", - "version": "15.0.0", + "version": "15.0.2", "description": "A light theme modeled after Maple from NekoPara", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Megumin's Theme/manifest.json b/chromeThemes_2560x1440/Megumin's Theme/manifest.json index 24b4de95..782673a3 100644 --- a/chromeThemes_2560x1440/Megumin's Theme/manifest.json +++ b/chromeThemes_2560x1440/Megumin's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Megumin", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Megumin from KonoSuba", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Miia's Theme/manifest.json b/chromeThemes_2560x1440/Miia's Theme/manifest.json index d1800ecf..12f1bf80 100644 --- a/chromeThemes_2560x1440/Miia's Theme/manifest.json +++ b/chromeThemes_2560x1440/Miia's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Miia", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Miia from Daily Life With A Monster Girl", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Mioda Ibuki Dark's Theme/manifest.json b/chromeThemes_2560x1440/Mioda Ibuki Dark's Theme/manifest.json index 2d571dd4..62266035 100644 --- a/chromeThemes_2560x1440/Mioda Ibuki Dark's Theme/manifest.json +++ b/chromeThemes_2560x1440/Mioda Ibuki Dark's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Mioda Ibuki Dark", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Ibuki from DanganRonpa", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Mioda Ibuki Light's Theme/manifest.json b/chromeThemes_2560x1440/Mioda Ibuki Light's Theme/manifest.json index 82ad3f2d..2d4e51f4 100644 --- a/chromeThemes_2560x1440/Mioda Ibuki Light's Theme/manifest.json +++ b/chromeThemes_2560x1440/Mioda Ibuki Light's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Mioda Ibuki Light", - "version": "15.0.0", + "version": "15.0.2", "description": "A light theme modeled after Ibuki from DanganRonpa", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Monika Dark's Theme/manifest.json b/chromeThemes_2560x1440/Monika Dark's Theme/manifest.json index 1ba99df5..06aa082d 100644 --- a/chromeThemes_2560x1440/Monika Dark's Theme/manifest.json +++ b/chromeThemes_2560x1440/Monika Dark's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Monika Dark", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Monika from Literature Club", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Monika Light's Theme/manifest.json b/chromeThemes_2560x1440/Monika Light's Theme/manifest.json index 2e7101a0..046b4f82 100644 --- a/chromeThemes_2560x1440/Monika Light's Theme/manifest.json +++ b/chromeThemes_2560x1440/Monika Light's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Monika Light", - "version": "15.0.0", + "version": "15.0.2", "description": "A light theme modeled after Monika from Literature Club", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Nakano Miku's Theme/manifest.json b/chromeThemes_2560x1440/Nakano Miku's Theme/manifest.json index c2749782..7adb3c27 100644 --- a/chromeThemes_2560x1440/Nakano Miku's Theme/manifest.json +++ b/chromeThemes_2560x1440/Nakano Miku's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Nakano Miku", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Miku from Quintessential Quintuplets", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Nakano Nino's Theme/manifest.json b/chromeThemes_2560x1440/Nakano Nino's Theme/manifest.json index 79f051fe..256786cc 100644 --- a/chromeThemes_2560x1440/Nakano Nino's Theme/manifest.json +++ b/chromeThemes_2560x1440/Nakano Nino's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Nakano Nino", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Nino from Quintessential Quintuplets", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Natsuki Dark's Theme/manifest.json b/chromeThemes_2560x1440/Natsuki Dark's Theme/manifest.json index 0812defc..499e0738 100644 --- a/chromeThemes_2560x1440/Natsuki Dark's Theme/manifest.json +++ b/chromeThemes_2560x1440/Natsuki Dark's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Natsuki Dark", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Natsuki from Literature Club", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Natsuki Light's Theme/manifest.json b/chromeThemes_2560x1440/Natsuki Light's Theme/manifest.json index 352d694a..8563a50d 100644 --- a/chromeThemes_2560x1440/Natsuki Light's Theme/manifest.json +++ b/chromeThemes_2560x1440/Natsuki Light's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Natsuki Light", - "version": "15.0.0", + "version": "15.0.2", "description": "A light theme modeled after Natsuki from Literature Club", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Ram's Theme/manifest.json b/chromeThemes_2560x1440/Ram's Theme/manifest.json index b52fbea3..07dd432c 100644 --- a/chromeThemes_2560x1440/Ram's Theme/manifest.json +++ b/chromeThemes_2560x1440/Ram's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Ram", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Ram from Re Zero", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Rei's Theme/manifest.json b/chromeThemes_2560x1440/Rei's Theme/manifest.json index 2c403d76..3027c13b 100644 --- a/chromeThemes_2560x1440/Rei's Theme/manifest.json +++ b/chromeThemes_2560x1440/Rei's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Rei", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Rei from Evangelion", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Rem's Theme/manifest.json b/chromeThemes_2560x1440/Rem's Theme/manifest.json index 450a7952..5aa47c49 100644 --- a/chromeThemes_2560x1440/Rem's Theme/manifest.json +++ b/chromeThemes_2560x1440/Rem's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Rem", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Rem from Re Zero", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Rias Crimson's Theme/manifest.json b/chromeThemes_2560x1440/Rias Crimson's Theme/manifest.json index 05784399..32533f11 100644 --- a/chromeThemes_2560x1440/Rias Crimson's Theme/manifest.json +++ b/chromeThemes_2560x1440/Rias Crimson's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Rias: Crimson", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Rias from High School DxD", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Rias Onyx's Theme/manifest.json b/chromeThemes_2560x1440/Rias Onyx's Theme/manifest.json index e6cf7150..c6d08a4e 100644 --- a/chromeThemes_2560x1440/Rias Onyx's Theme/manifest.json +++ b/chromeThemes_2560x1440/Rias Onyx's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Rias: Onyx", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Rias from High School DxD", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Rory Mercury's Theme/manifest.json b/chromeThemes_2560x1440/Rory Mercury's Theme/manifest.json index e6d4c6a0..269f6088 100644 --- a/chromeThemes_2560x1440/Rory Mercury's Theme/manifest.json +++ b/chromeThemes_2560x1440/Rory Mercury's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Rory Mercury", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Rory from Gate", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Ryuko Dark's Theme/manifest.json b/chromeThemes_2560x1440/Ryuko Dark's Theme/manifest.json index 7671e9d0..0290204e 100644 --- a/chromeThemes_2560x1440/Ryuko Dark's Theme/manifest.json +++ b/chromeThemes_2560x1440/Ryuko Dark's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Ryuko Dark", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Ryuko from Kill la Kill", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Ryuko Light's Theme/manifest.json b/chromeThemes_2560x1440/Ryuko Light's Theme/manifest.json index 307fb22c..9adcdcb7 100644 --- a/chromeThemes_2560x1440/Ryuko Light's Theme/manifest.json +++ b/chromeThemes_2560x1440/Ryuko Light's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Ryuko Light", - "version": "15.0.0", + "version": "15.0.2", "description": "A light theme modeled after Ryuko from Kill la Kill", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Sagiri's Theme/manifest.json b/chromeThemes_2560x1440/Sagiri's Theme/manifest.json index 3c331056..d58e5ddb 100644 --- a/chromeThemes_2560x1440/Sagiri's Theme/manifest.json +++ b/chromeThemes_2560x1440/Sagiri's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Sagiri", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Sagiri from EroManga Sensei", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Satsuki Dark's Theme/manifest.json b/chromeThemes_2560x1440/Satsuki Dark's Theme/manifest.json index 8c29e3b5..a1cfa661 100644 --- a/chromeThemes_2560x1440/Satsuki Dark's Theme/manifest.json +++ b/chromeThemes_2560x1440/Satsuki Dark's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Satsuki Dark", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Satsuki from Kill la Kill", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Satsuki Light's Theme/manifest.json b/chromeThemes_2560x1440/Satsuki Light's Theme/manifest.json index dfe82f3b..ad707eab 100644 --- a/chromeThemes_2560x1440/Satsuki Light's Theme/manifest.json +++ b/chromeThemes_2560x1440/Satsuki Light's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Satsuki Light", - "version": "15.0.0", + "version": "15.0.2", "description": "A light theme modeled after Satsuki from Kill la Kill", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Shigure's Theme/manifest.json b/chromeThemes_2560x1440/Shigure's Theme/manifest.json index d21edc99..9f7ede9f 100644 --- a/chromeThemes_2560x1440/Shigure's Theme/manifest.json +++ b/chromeThemes_2560x1440/Shigure's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Shigure", - "version": "15.0.0", + "version": "15.0.2", "description": "A light theme modeled after Shigure from NekoPara", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Shima Rin's Theme/manifest.json b/chromeThemes_2560x1440/Shima Rin's Theme/manifest.json index 44785071..27fc7658 100644 --- a/chromeThemes_2560x1440/Shima Rin's Theme/manifest.json +++ b/chromeThemes_2560x1440/Shima Rin's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Shima Rin", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Rin from Yuru Camp", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Sonoda Umi's Theme/manifest.json b/chromeThemes_2560x1440/Sonoda Umi's Theme/manifest.json index 92d504be..0f0fe2dc 100644 --- a/chromeThemes_2560x1440/Sonoda Umi's Theme/manifest.json +++ b/chromeThemes_2560x1440/Sonoda Umi's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Sonoda Umi", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Umi from Love Live", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Tohru's Theme/manifest.json b/chromeThemes_2560x1440/Tohru's Theme/manifest.json index 831b635e..35cb8063 100644 --- a/chromeThemes_2560x1440/Tohru's Theme/manifest.json +++ b/chromeThemes_2560x1440/Tohru's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Tohru", - "version": "15.0.0", + "version": "15.0.2", "description": "A light theme modeled after Tohru from Miss Kobayashi's Dragon Maid", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Tohsaka Rin's Theme/manifest.json b/chromeThemes_2560x1440/Tohsaka Rin's Theme/manifest.json index dd9dd76a..d3236104 100644 --- a/chromeThemes_2560x1440/Tohsaka Rin's Theme/manifest.json +++ b/chromeThemes_2560x1440/Tohsaka Rin's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Tohsaka Rin", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Rin from Fate", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Vanilla's Theme/manifest.json b/chromeThemes_2560x1440/Vanilla's Theme/manifest.json index 092afb3f..48675690 100644 --- a/chromeThemes_2560x1440/Vanilla's Theme/manifest.json +++ b/chromeThemes_2560x1440/Vanilla's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Vanilla", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Vanilla from NekoPara", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Yukinoshita Yukino's Theme/manifest.json b/chromeThemes_2560x1440/Yukinoshita Yukino's Theme/manifest.json index 51074988..95e1acb1 100644 --- a/chromeThemes_2560x1440/Yukinoshita Yukino's Theme/manifest.json +++ b/chromeThemes_2560x1440/Yukinoshita Yukino's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Yukinoshita Yukino", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Yukino from OreGairu", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Zero Two Dark's Theme/manifest.json b/chromeThemes_2560x1440/Zero Two Dark's Theme/manifest.json index ce055735..5789af9b 100644 --- a/chromeThemes_2560x1440/Zero Two Dark's Theme/manifest.json +++ b/chromeThemes_2560x1440/Zero Two Dark's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Zero Two Dark", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Zero Two from Darling in the Franxx", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Zero Two Light's Theme/manifest.json b/chromeThemes_2560x1440/Zero Two Light's Theme/manifest.json index 7dbb79e0..f3a0e019 100644 --- a/chromeThemes_2560x1440/Zero Two Light's Theme/manifest.json +++ b/chromeThemes_2560x1440/Zero Two Light's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Zero Two Light", - "version": "15.0.0", + "version": "15.0.2", "description": "A light theme modeled after Zero Two from Darling in the Franxx", "theme": { "images": { diff --git a/edgeThemes/Aqua's Theme/manifest.json b/edgeThemes/Aqua's Theme/manifest.json index b42c25f0..a85fb43c 100644 --- a/edgeThemes/Aqua's Theme/manifest.json +++ b/edgeThemes/Aqua's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Aqua", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Aqua from KonoSuba", "theme": { "images": { diff --git a/edgeThemes/Astolfo's Theme/manifest.json b/edgeThemes/Astolfo's Theme/manifest.json index b295defd..f71ef04b 100644 --- a/edgeThemes/Astolfo's Theme/manifest.json +++ b/edgeThemes/Astolfo's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Astolfo", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Astolfo from Fate", "theme": { "images": { diff --git a/edgeThemes/Asuna Dark's Theme/manifest.json b/edgeThemes/Asuna Dark's Theme/manifest.json index d2fe4037..f7ad95a1 100644 --- a/edgeThemes/Asuna Dark's Theme/manifest.json +++ b/edgeThemes/Asuna Dark's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Asuna Dark", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Asuna from Sword Art Online", "theme": { "images": { diff --git a/edgeThemes/Asuna Light's Theme/manifest.json b/edgeThemes/Asuna Light's Theme/manifest.json index 03fff625..c533d559 100644 --- a/edgeThemes/Asuna Light's Theme/manifest.json +++ b/edgeThemes/Asuna Light's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Asuna Light", - "version": "15.0.0", + "version": "15.0.2", "description": "A light theme modeled after Asuna from Sword Art Online", "theme": { "images": { diff --git a/edgeThemes/Azuki's Theme/manifest.json b/edgeThemes/Azuki's Theme/manifest.json index 3fc5de0f..60383a4f 100644 --- a/edgeThemes/Azuki's Theme/manifest.json +++ b/edgeThemes/Azuki's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Azuki", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Azuki from NekoPara", "theme": { "images": { diff --git a/edgeThemes/Beatrice's Theme/manifest.json b/edgeThemes/Beatrice's Theme/manifest.json index 24d60db5..62af94b3 100644 --- a/edgeThemes/Beatrice's Theme/manifest.json +++ b/edgeThemes/Beatrice's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Beatrice", - "version": "15.0.0", + "version": "15.0.2", "description": "A light theme modeled after Beatrice from Re Zero", "theme": { "images": { diff --git a/edgeThemes/Chocola's Theme/manifest.json b/edgeThemes/Chocola's Theme/manifest.json index 7fa303f9..d8f18a3a 100644 --- a/edgeThemes/Chocola's Theme/manifest.json +++ b/edgeThemes/Chocola's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Chocola", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Chocola from NekoPara", "theme": { "images": { diff --git a/edgeThemes/Cinnamon's Theme/manifest.json b/edgeThemes/Cinnamon's Theme/manifest.json index 8ec96065..41cf683a 100644 --- a/edgeThemes/Cinnamon's Theme/manifest.json +++ b/edgeThemes/Cinnamon's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Cinnamon", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Cinnamon from NekoPara", "theme": { "images": { diff --git a/edgeThemes/Coconut's Theme/manifest.json b/edgeThemes/Coconut's Theme/manifest.json index fca82480..cbebd891 100644 --- a/edgeThemes/Coconut's Theme/manifest.json +++ b/edgeThemes/Coconut's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Coconut", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Coconut from NekoPara", "theme": { "images": { diff --git a/edgeThemes/Darkness Dark's Theme/manifest.json b/edgeThemes/Darkness Dark's Theme/manifest.json index 1f3af996..b895acd2 100644 --- a/edgeThemes/Darkness Dark's Theme/manifest.json +++ b/edgeThemes/Darkness Dark's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Darkness Dark", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Darkness from KonoSuba", "theme": { "images": { diff --git a/edgeThemes/Darkness Light's Theme/manifest.json b/edgeThemes/Darkness Light's Theme/manifest.json index e6e38db5..01ae679d 100644 --- a/edgeThemes/Darkness Light's Theme/manifest.json +++ b/edgeThemes/Darkness Light's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Darkness Light", - "version": "15.0.0", + "version": "15.0.2", "description": "A light theme modeled after Darkness from KonoSuba", "theme": { "images": { diff --git a/edgeThemes/Echidna's Theme/manifest.json b/edgeThemes/Echidna's Theme/manifest.json index ef4d5e30..89d95616 100644 --- a/edgeThemes/Echidna's Theme/manifest.json +++ b/edgeThemes/Echidna's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Echidna", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Echidna from Re Zero", "theme": { "images": { diff --git a/edgeThemes/Emilia Dark's Theme/manifest.json b/edgeThemes/Emilia Dark's Theme/manifest.json index 459d4926..51a15492 100644 --- a/edgeThemes/Emilia Dark's Theme/manifest.json +++ b/edgeThemes/Emilia Dark's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Emilia Dark", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Emilia from Re Zero", "theme": { "images": { diff --git a/edgeThemes/Emilia Light's Theme/manifest.json b/edgeThemes/Emilia Light's Theme/manifest.json index cb73f23a..c8c48802 100644 --- a/edgeThemes/Emilia Light's Theme/manifest.json +++ b/edgeThemes/Emilia Light's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Emilia Light", - "version": "15.0.0", + "version": "15.0.2", "description": "A light theme modeled after Emilia from Re Zero", "theme": { "images": { diff --git a/edgeThemes/Gasai Yuno's Theme/manifest.json b/edgeThemes/Gasai Yuno's Theme/manifest.json index 6736bcf9..7a4191ab 100644 --- a/edgeThemes/Gasai Yuno's Theme/manifest.json +++ b/edgeThemes/Gasai Yuno's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Gasai Yuno", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Yuno from Future Diary", "theme": { "images": { diff --git a/edgeThemes/Gray's Theme/manifest.json b/edgeThemes/Gray's Theme/manifest.json index 21fcc1da..cc091b6d 100644 --- a/edgeThemes/Gray's Theme/manifest.json +++ b/edgeThemes/Gray's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Gray", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Gray from Type-Moon", "theme": { "images": { diff --git a/edgeThemes/Hanekawa Tsubasa's Theme/manifest.json b/edgeThemes/Hanekawa Tsubasa's Theme/manifest.json index eaae52a4..afc038b3 100644 --- a/edgeThemes/Hanekawa Tsubasa's Theme/manifest.json +++ b/edgeThemes/Hanekawa Tsubasa's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Hanekawa Tsubasa", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Tsubasa from Monogatari", "theme": { "images": { diff --git a/edgeThemes/Hatsune Miku's Theme/manifest.json b/edgeThemes/Hatsune Miku's Theme/manifest.json index 82f28232..bc08dd3a 100644 --- a/edgeThemes/Hatsune Miku's Theme/manifest.json +++ b/edgeThemes/Hatsune Miku's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Hatsune Miku", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Miku from Vocaloid", "theme": { "images": { diff --git a/edgeThemes/Hayase Nagatoro's Theme/manifest.json b/edgeThemes/Hayase Nagatoro's Theme/manifest.json index d30bbf28..696e39c4 100644 --- a/edgeThemes/Hayase Nagatoro's Theme/manifest.json +++ b/edgeThemes/Hayase Nagatoro's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Hayase Nagatoro", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Nagatoro from Don't Toy with me Miss Nagatoro", "theme": { "images": { diff --git a/edgeThemes/Ishtar Dark's Theme/manifest.json b/edgeThemes/Ishtar Dark's Theme/manifest.json index dd7ddc2b..766325dc 100644 --- a/edgeThemes/Ishtar Dark's Theme/manifest.json +++ b/edgeThemes/Ishtar Dark's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Ishtar Dark", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Ishtar from Fate", "theme": { "images": { diff --git a/edgeThemes/Ishtar Light's Theme/manifest.json b/edgeThemes/Ishtar Light's Theme/manifest.json index d1bd29da..a9f88d10 100644 --- a/edgeThemes/Ishtar Light's Theme/manifest.json +++ b/edgeThemes/Ishtar Light's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Ishtar Light", - "version": "15.0.0", + "version": "15.0.2", "description": "A light theme modeled after Ishtar from Fate", "theme": { "images": { diff --git a/edgeThemes/Jabami Yumeko's Theme/manifest.json b/edgeThemes/Jabami Yumeko's Theme/manifest.json index 55d97c9e..850aac46 100644 --- a/edgeThemes/Jabami Yumeko's Theme/manifest.json +++ b/edgeThemes/Jabami Yumeko's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Jabami Yumeko", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Yumeko from Kakegurui", "theme": { "images": { diff --git a/edgeThemes/Kanna's Theme/manifest.json b/edgeThemes/Kanna's Theme/manifest.json index 41605d05..4a3b80d0 100644 --- a/edgeThemes/Kanna's Theme/manifest.json +++ b/edgeThemes/Kanna's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Kanna", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Kanna from Miss Kobayashi's Dragon Maid", "theme": { "images": { diff --git a/edgeThemes/Katsuragi Misato's Theme/manifest.json b/edgeThemes/Katsuragi Misato's Theme/manifest.json index a6b6bce0..319e8eaa 100644 --- a/edgeThemes/Katsuragi Misato's Theme/manifest.json +++ b/edgeThemes/Katsuragi Misato's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Katsuragi Misato", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Misato from Evangelion", "theme": { "images": { diff --git a/edgeThemes/Kirino's Theme/manifest.json b/edgeThemes/Kirino's Theme/manifest.json index 316f7c1b..e7d00b36 100644 --- a/edgeThemes/Kirino's Theme/manifest.json +++ b/edgeThemes/Kirino's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Kirino", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Kirino from OreImo", "theme": { "images": { diff --git a/edgeThemes/Konata's Theme/manifest.json b/edgeThemes/Konata's Theme/manifest.json index 4c66e277..eb2c2f51 100644 --- a/edgeThemes/Konata's Theme/manifest.json +++ b/edgeThemes/Konata's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Konata", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Konata from Lucky Star", "theme": { "images": { diff --git a/edgeThemes/Mai Dark's Theme/manifest.json b/edgeThemes/Mai Dark's Theme/manifest.json index be8153a0..27573b2f 100644 --- a/edgeThemes/Mai Dark's Theme/manifest.json +++ b/edgeThemes/Mai Dark's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Mai Dark", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Mai from Bunny Senpai", "theme": { "images": { diff --git a/edgeThemes/Mai Light's Theme/manifest.json b/edgeThemes/Mai Light's Theme/manifest.json index ced933f6..52fb48d2 100644 --- a/edgeThemes/Mai Light's Theme/manifest.json +++ b/edgeThemes/Mai Light's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Mai Light", - "version": "15.0.0", + "version": "15.0.2", "description": "A light theme modeled after Mai from Bunny Senpai", "theme": { "images": { diff --git a/edgeThemes/Maika's Theme/manifest.json b/edgeThemes/Maika's Theme/manifest.json index 98cbb423..60b88992 100644 --- a/edgeThemes/Maika's Theme/manifest.json +++ b/edgeThemes/Maika's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Maika", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Maika from Blend S", "theme": { "images": { diff --git a/edgeThemes/Makise Kurisu's Theme/manifest.json b/edgeThemes/Makise Kurisu's Theme/manifest.json index 0ac5372f..3a033c56 100644 --- a/edgeThemes/Makise Kurisu's Theme/manifest.json +++ b/edgeThemes/Makise Kurisu's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Makise Kurisu", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Kurisu from Steins Gate", "theme": { "images": { diff --git a/edgeThemes/Maple Dark's Theme/manifest.json b/edgeThemes/Maple Dark's Theme/manifest.json index 8dbf2fb4..e2aafb1c 100644 --- a/edgeThemes/Maple Dark's Theme/manifest.json +++ b/edgeThemes/Maple Dark's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Maple Dark", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Maple from NekoPara", "theme": { "images": { diff --git a/edgeThemes/Maple Light's Theme/manifest.json b/edgeThemes/Maple Light's Theme/manifest.json index 68e17ac1..f39ca053 100644 --- a/edgeThemes/Maple Light's Theme/manifest.json +++ b/edgeThemes/Maple Light's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Maple Light", - "version": "15.0.0", + "version": "15.0.2", "description": "A light theme modeled after Maple from NekoPara", "theme": { "images": { diff --git a/edgeThemes/Megumin's Theme/manifest.json b/edgeThemes/Megumin's Theme/manifest.json index f70bad25..73639eea 100644 --- a/edgeThemes/Megumin's Theme/manifest.json +++ b/edgeThemes/Megumin's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Megumin", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Megumin from KonoSuba", "theme": { "images": { diff --git a/edgeThemes/Miia's Theme/manifest.json b/edgeThemes/Miia's Theme/manifest.json index 563e9966..74d03174 100644 --- a/edgeThemes/Miia's Theme/manifest.json +++ b/edgeThemes/Miia's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Miia", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Miia from Daily Life With A Monster Girl", "theme": { "images": { diff --git a/edgeThemes/Mioda Ibuki Dark's Theme/manifest.json b/edgeThemes/Mioda Ibuki Dark's Theme/manifest.json index 429bff42..7ccc181d 100644 --- a/edgeThemes/Mioda Ibuki Dark's Theme/manifest.json +++ b/edgeThemes/Mioda Ibuki Dark's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Mioda Ibuki Dark", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Ibuki from DanganRonpa", "theme": { "images": { diff --git a/edgeThemes/Mioda Ibuki Light's Theme/manifest.json b/edgeThemes/Mioda Ibuki Light's Theme/manifest.json index 3479f634..e02397af 100644 --- a/edgeThemes/Mioda Ibuki Light's Theme/manifest.json +++ b/edgeThemes/Mioda Ibuki Light's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Mioda Ibuki Light", - "version": "15.0.0", + "version": "15.0.2", "description": "A light theme modeled after Ibuki from DanganRonpa", "theme": { "images": { diff --git a/edgeThemes/Monika Dark's Theme/manifest.json b/edgeThemes/Monika Dark's Theme/manifest.json index f285d0e1..e7a8628e 100644 --- a/edgeThemes/Monika Dark's Theme/manifest.json +++ b/edgeThemes/Monika Dark's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Monika Dark", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Monika from Literature Club", "theme": { "images": { diff --git a/edgeThemes/Monika Light's Theme/manifest.json b/edgeThemes/Monika Light's Theme/manifest.json index 32ee0669..15032102 100644 --- a/edgeThemes/Monika Light's Theme/manifest.json +++ b/edgeThemes/Monika Light's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Monika Light", - "version": "15.0.0", + "version": "15.0.2", "description": "A light theme modeled after Monika from Literature Club", "theme": { "images": { diff --git a/edgeThemes/Nakano Miku's Theme/manifest.json b/edgeThemes/Nakano Miku's Theme/manifest.json index 324c427a..7fe06dc6 100644 --- a/edgeThemes/Nakano Miku's Theme/manifest.json +++ b/edgeThemes/Nakano Miku's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Nakano Miku", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Miku from Quintessential Quintuplets", "theme": { "images": { diff --git a/edgeThemes/Nakano Nino's Theme/manifest.json b/edgeThemes/Nakano Nino's Theme/manifest.json index 94d62f15..916672a4 100644 --- a/edgeThemes/Nakano Nino's Theme/manifest.json +++ b/edgeThemes/Nakano Nino's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Nakano Nino", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Nino from Quintessential Quintuplets", "theme": { "images": { diff --git a/edgeThemes/Natsuki Dark's Theme/manifest.json b/edgeThemes/Natsuki Dark's Theme/manifest.json index b650b010..765b8e4f 100644 --- a/edgeThemes/Natsuki Dark's Theme/manifest.json +++ b/edgeThemes/Natsuki Dark's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Natsuki Dark", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Natsuki from Literature Club", "theme": { "images": { diff --git a/edgeThemes/Natsuki Light's Theme/manifest.json b/edgeThemes/Natsuki Light's Theme/manifest.json index 51127f7f..c7e16315 100644 --- a/edgeThemes/Natsuki Light's Theme/manifest.json +++ b/edgeThemes/Natsuki Light's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Natsuki Light", - "version": "15.0.0", + "version": "15.0.2", "description": "A light theme modeled after Natsuki from Literature Club", "theme": { "images": { diff --git a/edgeThemes/Ram's Theme/manifest.json b/edgeThemes/Ram's Theme/manifest.json index 23a6f165..402f2e5a 100644 --- a/edgeThemes/Ram's Theme/manifest.json +++ b/edgeThemes/Ram's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Ram", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Ram from Re Zero", "theme": { "images": { diff --git a/edgeThemes/Rei's Theme/manifest.json b/edgeThemes/Rei's Theme/manifest.json index d332ddd5..f33586d8 100644 --- a/edgeThemes/Rei's Theme/manifest.json +++ b/edgeThemes/Rei's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Rei", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Rei from Evangelion", "theme": { "images": { diff --git a/edgeThemes/Rem's Theme/manifest.json b/edgeThemes/Rem's Theme/manifest.json index 9cc06d52..ad3eaca0 100644 --- a/edgeThemes/Rem's Theme/manifest.json +++ b/edgeThemes/Rem's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Rem", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Rem from Re Zero", "theme": { "images": { diff --git a/edgeThemes/Rias Crimson's Theme/manifest.json b/edgeThemes/Rias Crimson's Theme/manifest.json index 3a76d6db..94d36048 100644 --- a/edgeThemes/Rias Crimson's Theme/manifest.json +++ b/edgeThemes/Rias Crimson's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Rias: Crimson", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Rias from High School DxD", "theme": { "images": { diff --git a/edgeThemes/Rias Onyx's Theme/manifest.json b/edgeThemes/Rias Onyx's Theme/manifest.json index f62e844a..dc9c0883 100644 --- a/edgeThemes/Rias Onyx's Theme/manifest.json +++ b/edgeThemes/Rias Onyx's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Rias: Onyx", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Rias from High School DxD", "theme": { "images": { diff --git a/edgeThemes/Rory Mercury's Theme/manifest.json b/edgeThemes/Rory Mercury's Theme/manifest.json index 3a05bb52..0629af91 100644 --- a/edgeThemes/Rory Mercury's Theme/manifest.json +++ b/edgeThemes/Rory Mercury's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Rory Mercury", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Rory from Gate", "theme": { "images": { diff --git a/edgeThemes/Ryuko Dark's Theme/manifest.json b/edgeThemes/Ryuko Dark's Theme/manifest.json index cd0eecf2..76198814 100644 --- a/edgeThemes/Ryuko Dark's Theme/manifest.json +++ b/edgeThemes/Ryuko Dark's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Ryuko Dark", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Ryuko from Kill la Kill", "theme": { "images": { diff --git a/edgeThemes/Ryuko Light's Theme/manifest.json b/edgeThemes/Ryuko Light's Theme/manifest.json index 3795250c..8ac440a9 100644 --- a/edgeThemes/Ryuko Light's Theme/manifest.json +++ b/edgeThemes/Ryuko Light's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Ryuko Light", - "version": "15.0.0", + "version": "15.0.2", "description": "A light theme modeled after Ryuko from Kill la Kill", "theme": { "images": { diff --git a/edgeThemes/Sagiri's Theme/manifest.json b/edgeThemes/Sagiri's Theme/manifest.json index 43b7b6d1..0b4d41c4 100644 --- a/edgeThemes/Sagiri's Theme/manifest.json +++ b/edgeThemes/Sagiri's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Sagiri", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Sagiri from EroManga Sensei", "theme": { "images": { diff --git a/edgeThemes/Satsuki Dark's Theme/manifest.json b/edgeThemes/Satsuki Dark's Theme/manifest.json index 92f0c210..e2c12713 100644 --- a/edgeThemes/Satsuki Dark's Theme/manifest.json +++ b/edgeThemes/Satsuki Dark's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Satsuki Dark", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Satsuki from Kill la Kill", "theme": { "images": { diff --git a/edgeThemes/Satsuki Light's Theme/manifest.json b/edgeThemes/Satsuki Light's Theme/manifest.json index 8d7fb6db..1bca74cf 100644 --- a/edgeThemes/Satsuki Light's Theme/manifest.json +++ b/edgeThemes/Satsuki Light's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Satsuki Light", - "version": "15.0.0", + "version": "15.0.2", "description": "A light theme modeled after Satsuki from Kill la Kill", "theme": { "images": { diff --git a/edgeThemes/Sayori Dark's Theme/manifest.json b/edgeThemes/Sayori Dark's Theme/manifest.json index f7487967..850ecbf5 100644 --- a/edgeThemes/Sayori Dark's Theme/manifest.json +++ b/edgeThemes/Sayori Dark's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Sayori Dark", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Š̸̘͚̼͎̯̙̣̱̎̋̐͒a̴̖̟̠̳̤͙̟͂̂͑̐͜ỷ̵̧̨̞̠̖̠o̴̧͍̗̬̎̓͆̔͝ͅr̴̡̮̟͈͠ͅi̴̡̨͓͈̬̗̺̍́̃̇̓ from Literature Club", "theme": { "images": { diff --git a/edgeThemes/Sayori Light's Theme/manifest.json b/edgeThemes/Sayori Light's Theme/manifest.json index 9b91fe52..4b896338 100644 --- a/edgeThemes/Sayori Light's Theme/manifest.json +++ b/edgeThemes/Sayori Light's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Sayori Light", - "version": "15.0.0", + "version": "15.0.2", "description": "A light theme modeled after Sayori from Literature Club", "theme": { "images": { diff --git a/edgeThemes/Shigure's Theme/manifest.json b/edgeThemes/Shigure's Theme/manifest.json index ef82ce76..70464a79 100644 --- a/edgeThemes/Shigure's Theme/manifest.json +++ b/edgeThemes/Shigure's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Shigure", - "version": "15.0.0", + "version": "15.0.2", "description": "A light theme modeled after Shigure from NekoPara", "theme": { "images": { diff --git a/edgeThemes/Shima Rin's Theme/manifest.json b/edgeThemes/Shima Rin's Theme/manifest.json index 2340b0ee..8e996440 100644 --- a/edgeThemes/Shima Rin's Theme/manifest.json +++ b/edgeThemes/Shima Rin's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Shima Rin", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Rin from Yuru Camp", "theme": { "images": { diff --git a/edgeThemes/Sonoda Umi's Theme/manifest.json b/edgeThemes/Sonoda Umi's Theme/manifest.json index e5cb9867..3cfe28aa 100644 --- a/edgeThemes/Sonoda Umi's Theme/manifest.json +++ b/edgeThemes/Sonoda Umi's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Sonoda Umi", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Umi from Love Live", "theme": { "images": { diff --git a/edgeThemes/Tohru's Theme/manifest.json b/edgeThemes/Tohru's Theme/manifest.json index 3802c38f..fcd5910f 100644 --- a/edgeThemes/Tohru's Theme/manifest.json +++ b/edgeThemes/Tohru's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Tohru", - "version": "15.0.0", + "version": "15.0.2", "description": "A light theme modeled after Tohru from Miss Kobayashi's Dragon Maid", "theme": { "images": { diff --git a/edgeThemes/Tohsaka Rin's Theme/manifest.json b/edgeThemes/Tohsaka Rin's Theme/manifest.json index dea63fe2..d0b28723 100644 --- a/edgeThemes/Tohsaka Rin's Theme/manifest.json +++ b/edgeThemes/Tohsaka Rin's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Tohsaka Rin", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Rin from Fate", "theme": { "images": { diff --git a/edgeThemes/Vanilla's Theme/manifest.json b/edgeThemes/Vanilla's Theme/manifest.json index 45d10495..95c7199a 100644 --- a/edgeThemes/Vanilla's Theme/manifest.json +++ b/edgeThemes/Vanilla's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Vanilla", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Vanilla from NekoPara", "theme": { "images": { diff --git a/edgeThemes/Yukinoshita Yukino's Theme/manifest.json b/edgeThemes/Yukinoshita Yukino's Theme/manifest.json index 4d27f169..1eb33622 100644 --- a/edgeThemes/Yukinoshita Yukino's Theme/manifest.json +++ b/edgeThemes/Yukinoshita Yukino's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Yukinoshita Yukino", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Yukino from OreGairu", "theme": { "images": { diff --git a/edgeThemes/Yuri Dark's Theme/manifest.json b/edgeThemes/Yuri Dark's Theme/manifest.json index 6ea37883..93dfb516 100644 --- a/edgeThemes/Yuri Dark's Theme/manifest.json +++ b/edgeThemes/Yuri Dark's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Yuri Dark", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Yuri from Literature Club", "theme": { "images": { diff --git a/edgeThemes/Yuri Light's Theme/manifest.json b/edgeThemes/Yuri Light's Theme/manifest.json index ab090f16..915892fc 100644 --- a/edgeThemes/Yuri Light's Theme/manifest.json +++ b/edgeThemes/Yuri Light's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Yuri Light", - "version": "15.0.0", + "version": "15.0.2", "description": "A light theme modeled after Yuri from Literature Club", "theme": { "images": { diff --git a/edgeThemes/Zero Two Dark's Theme/manifest.json b/edgeThemes/Zero Two Dark's Theme/manifest.json index aec11e70..e88c3877 100644 --- a/edgeThemes/Zero Two Dark's Theme/manifest.json +++ b/edgeThemes/Zero Two Dark's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Zero Two Dark", - "version": "15.0.0", + "version": "15.0.2", "description": "A dark theme modeled after Zero Two from Darling in the Franxx", "theme": { "images": { diff --git a/edgeThemes/Zero Two Light's Theme/manifest.json b/edgeThemes/Zero Two Light's Theme/manifest.json index bae949cc..f48955df 100644 --- a/edgeThemes/Zero Two Light's Theme/manifest.json +++ b/edgeThemes/Zero Two Light's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Zero Two Light", - "version": "15.0.0", + "version": "15.0.2", "description": "A light theme modeled after Zero Two from Darling in the Franxx", "theme": { "images": { diff --git a/firefoxThemes/manifest.json b/firefoxThemes/manifest.json index 30fc2ad0..3dc1474d 100644 --- a/firefoxThemes/manifest.json +++ b/firefoxThemes/manifest.json @@ -1,7 +1,7 @@ { "name": "Doki Theme for Firefox", "short_name": "Doki Theme", - "version": "15.0.1", + "version": "15.0.2", "description": "A theme collection of girls from various anime, manga, and visual novels series.", "manifest_version": 2, "icons": { diff --git a/firefoxThemes/package.json b/firefoxThemes/package.json index a16d18d8..3d7ea153 100644 --- a/firefoxThemes/package.json +++ b/firefoxThemes/package.json @@ -1,6 +1,6 @@ { "name": "doki-theme-firefox", - "version": "15.0.1", + "version": "15.0.2", "description": "A theme collection of girls from various anime, manga, and visual novels series.", "main": "index.js", "repository": "https://github.com/doki-theme/doki-theme-web", diff --git a/firefoxThemes/waifus/Aqua/theme.json b/firefoxThemes/waifus/Aqua/theme.json index ee0ce29a..3a6dd4af 100644 --- a/firefoxThemes/waifus/Aqua/theme.json +++ b/firefoxThemes/waifus/Aqua/theme.json @@ -80,6 +80,31 @@ 187, 187 ], + "sidebar": [ + 36, + 41, + 66 + ], + "sidebar_highlight": [ + 76, + 99, + 122 + ], + "sidebar_highlight_text": [ + 251, + 251, + 251 + ], + "sidebar_border": [ + 42, + 51, + 75 + ], + "sidebar_text": [ + 187, + 187, + 187 + ], "tab_background_separator": [ 42, 51, diff --git a/firefoxThemes/waifus/Astolfo/theme.json b/firefoxThemes/waifus/Astolfo/theme.json index de576517..04a61597 100644 --- a/firefoxThemes/waifus/Astolfo/theme.json +++ b/firefoxThemes/waifus/Astolfo/theme.json @@ -80,6 +80,31 @@ 187, 187 ], + "sidebar": [ + 20, + 21, + 19 + ], + "sidebar_highlight": [ + 57, + 23, + 23 + ], + "sidebar_highlight_text": [ + 251, + 251, + 251 + ], + "sidebar_border": [ + 33, + 34, + 32 + ], + "sidebar_text": [ + 187, + 187, + 187 + ], "tab_background_separator": [ 33, 34, diff --git a/firefoxThemes/waifus/Asuna_Dark/theme.json b/firefoxThemes/waifus/Asuna_Dark/theme.json index c0d63d63..7581ddc3 100644 --- a/firefoxThemes/waifus/Asuna_Dark/theme.json +++ b/firefoxThemes/waifus/Asuna_Dark/theme.json @@ -80,6 +80,31 @@ 187, 187 ], + "sidebar": [ + 28, + 28, + 28 + ], + "sidebar_highlight": [ + 57, + 23, + 23 + ], + "sidebar_highlight_text": [ + 251, + 251, + 251 + ], + "sidebar_border": [ + 42, + 41, + 41 + ], + "sidebar_text": [ + 187, + 187, + 187 + ], "tab_background_separator": [ 42, 41, diff --git a/firefoxThemes/waifus/Asuna_Light/theme.json b/firefoxThemes/waifus/Asuna_Light/theme.json index 5f0766bb..cbbccd01 100644 --- a/firefoxThemes/waifus/Asuna_Light/theme.json +++ b/firefoxThemes/waifus/Asuna_Light/theme.json @@ -80,6 +80,31 @@ 36, 39 ], + "sidebar": [ + 252, + 252, + 252 + ], + "sidebar_highlight": [ + 233, + 180, + 184 + ], + "sidebar_highlight_text": [ + 57, + 61, + 69 + ], + "sidebar_border": [ + 238, + 238, + 238 + ], + "sidebar_text": [ + 37, + 36, + 39 + ], "tab_background_separator": [ 238, 238, diff --git a/firefoxThemes/waifus/Azuki/theme.json b/firefoxThemes/waifus/Azuki/theme.json index a86dffc5..646212ad 100644 --- a/firefoxThemes/waifus/Azuki/theme.json +++ b/firefoxThemes/waifus/Azuki/theme.json @@ -80,6 +80,31 @@ 191, 191 ], + "sidebar": [ + 41, + 30, + 27 + ], + "sidebar_highlight": [ + 104, + 78, + 41 + ], + "sidebar_highlight_text": [ + 251, + 251, + 251 + ], + "sidebar_border": [ + 64, + 51, + 49 + ], + "sidebar_text": [ + 191, + 191, + 191 + ], "tab_background_separator": [ 64, 51, diff --git a/firefoxThemes/waifus/Beatrice/theme.json b/firefoxThemes/waifus/Beatrice/theme.json index 3be418ef..f62551bf 100644 --- a/firefoxThemes/waifus/Beatrice/theme.json +++ b/firefoxThemes/waifus/Beatrice/theme.json @@ -80,6 +80,31 @@ 0, 0 ], + "sidebar": [ + 243, + 207, + 224 + ], + "sidebar_highlight": [ + 220, + 153, + 187 + ], + "sidebar_highlight_text": [ + 255, + 255, + 255 + ], + "sidebar_border": [ + 241, + 215, + 230 + ], + "sidebar_text": [ + 0, + 0, + 0 + ], "tab_background_separator": [ 241, 215, diff --git a/firefoxThemes/waifus/Chocola/theme.json b/firefoxThemes/waifus/Chocola/theme.json index d7d7a9b0..52f532c9 100644 --- a/firefoxThemes/waifus/Chocola/theme.json +++ b/firefoxThemes/waifus/Chocola/theme.json @@ -80,6 +80,31 @@ 211, 211 ], + "sidebar": [ + 40, + 32, + 35 + ], + "sidebar_highlight": [ + 106, + 56, + 73 + ], + "sidebar_highlight_text": [ + 254, + 254, + 254 + ], + "sidebar_border": [ + 58, + 51, + 54 + ], + "sidebar_text": [ + 211, + 211, + 211 + ], "tab_background_separator": [ 58, 51, diff --git a/firefoxThemes/waifus/Cinnamon/theme.json b/firefoxThemes/waifus/Cinnamon/theme.json index 24076e42..5bcf48b8 100644 --- a/firefoxThemes/waifus/Cinnamon/theme.json +++ b/firefoxThemes/waifus/Cinnamon/theme.json @@ -80,6 +80,31 @@ 237, 255 ], + "sidebar": [ + 51, + 49, + 132 + ], + "sidebar_highlight": [ + 58, + 108, + 117 + ], + "sidebar_highlight_text": [ + 231, + 233, + 255 + ], + "sidebar_border": [ + 65, + 62, + 150 + ], + "sidebar_text": [ + 243, + 237, + 255 + ], "tab_background_separator": [ 65, 62, diff --git a/firefoxThemes/waifus/Coconut/theme.json b/firefoxThemes/waifus/Coconut/theme.json index 1ad8603d..76908fc8 100644 --- a/firefoxThemes/waifus/Coconut/theme.json +++ b/firefoxThemes/waifus/Coconut/theme.json @@ -80,6 +80,31 @@ 211, 211 ], + "sidebar": [ + 45, + 39, + 53 + ], + "sidebar_highlight": [ + 37, + 91, + 130 + ], + "sidebar_highlight_text": [ + 254, + 254, + 254 + ], + "sidebar_border": [ + 69, + 59, + 78 + ], + "sidebar_text": [ + 211, + 211, + 211 + ], "tab_background_separator": [ 69, 59, diff --git a/firefoxThemes/waifus/Darkness_Dark/theme.json b/firefoxThemes/waifus/Darkness_Dark/theme.json index 4f16218c..2e1f11d8 100644 --- a/firefoxThemes/waifus/Darkness_Dark/theme.json +++ b/firefoxThemes/waifus/Darkness_Dark/theme.json @@ -80,6 +80,31 @@ 195, 195 ], + "sidebar": [ + 16, + 13, + 3 + ], + "sidebar_highlight": [ + 85, + 57, + 25 + ], + "sidebar_highlight_text": [ + 251, + 251, + 251 + ], + "sidebar_border": [ + 28, + 21, + 0 + ], + "sidebar_text": [ + 195, + 195, + 195 + ], "tab_background_separator": [ 28, 21, diff --git a/firefoxThemes/waifus/Darkness_Light/theme.json b/firefoxThemes/waifus/Darkness_Light/theme.json index 6687e8b0..b4b77ec0 100644 --- a/firefoxThemes/waifus/Darkness_Light/theme.json +++ b/firefoxThemes/waifus/Darkness_Light/theme.json @@ -80,6 +80,31 @@ 0, 0 ], + "sidebar": [ + 255, + 255, + 247 + ], + "sidebar_highlight": [ + 255, + 243, + 180 + ], + "sidebar_highlight_text": [ + 168, + 147, + 10 + ], + "sidebar_border": [ + 241, + 244, + 224 + ], + "sidebar_text": [ + 0, + 0, + 0 + ], "tab_background_separator": [ 241, 244, diff --git a/firefoxThemes/waifus/Echidna/theme.json b/firefoxThemes/waifus/Echidna/theme.json index 59502a4b..067de5c8 100644 --- a/firefoxThemes/waifus/Echidna/theme.json +++ b/firefoxThemes/waifus/Echidna/theme.json @@ -80,6 +80,31 @@ 168, 168 ], + "sidebar": [ + 17, + 15, + 19 + ], + "sidebar_highlight": [ + 39, + 69, + 64 + ], + "sidebar_highlight_text": [ + 251, + 251, + 251 + ], + "sidebar_border": [ + 30, + 32, + 33 + ], + "sidebar_text": [ + 168, + 168, + 168 + ], "tab_background_separator": [ 30, 32, diff --git a/firefoxThemes/waifus/Emilia_Dark/theme.json b/firefoxThemes/waifus/Emilia_Dark/theme.json index a0d94e80..e689718e 100644 --- a/firefoxThemes/waifus/Emilia_Dark/theme.json +++ b/firefoxThemes/waifus/Emilia_Dark/theme.json @@ -80,6 +80,31 @@ 218, 218 ], + "sidebar": [ + 78, + 45, + 98 + ], + "sidebar_highlight": [ + 81, + 37, + 109 + ], + "sidebar_highlight_text": [ + 210, + 158, + 255 + ], + "sidebar_border": [ + 85, + 58, + 99 + ], + "sidebar_text": [ + 218, + 218, + 218 + ], "tab_background_separator": [ 85, 58, diff --git a/firefoxThemes/waifus/Emilia_Light/theme.json b/firefoxThemes/waifus/Emilia_Light/theme.json index 1e6201c7..c6055ee3 100644 --- a/firefoxThemes/waifus/Emilia_Light/theme.json +++ b/firefoxThemes/waifus/Emilia_Light/theme.json @@ -80,6 +80,31 @@ 36, 39 ], + "sidebar": [ + 250, + 236, + 255 + ], + "sidebar_highlight": [ + 199, + 160, + 210 + ], + "sidebar_highlight_text": [ + 57, + 61, + 69 + ], + "sidebar_border": [ + 233, + 216, + 246 + ], + "sidebar_text": [ + 37, + 36, + 39 + ], "tab_background_separator": [ 233, 216, diff --git a/firefoxThemes/waifus/Gasai_Yuno/theme.json b/firefoxThemes/waifus/Gasai_Yuno/theme.json index fb719f3c..57ca7514 100644 --- a/firefoxThemes/waifus/Gasai_Yuno/theme.json +++ b/firefoxThemes/waifus/Gasai_Yuno/theme.json @@ -80,6 +80,31 @@ 200, 200 ], + "sidebar": [ + 19, + 5, + 17 + ], + "sidebar_highlight": [ + 96, + 43, + 80 + ], + "sidebar_highlight_text": [ + 246, + 196, + 211 + ], + "sidebar_border": [ + 48, + 12, + 48 + ], + "sidebar_text": [ + 200, + 200, + 200 + ], "tab_background_separator": [ 48, 12, diff --git a/firefoxThemes/waifus/Gray/theme.json b/firefoxThemes/waifus/Gray/theme.json index 8f41fd03..9528135a 100644 --- a/firefoxThemes/waifus/Gray/theme.json +++ b/firefoxThemes/waifus/Gray/theme.json @@ -80,6 +80,31 @@ 176, 176 ], + "sidebar": [ + 54, + 62, + 62 + ], + "sidebar_highlight": [ + 41, + 80, + 67 + ], + "sidebar_highlight_text": [ + 251, + 251, + 251 + ], + "sidebar_border": [ + 66, + 70, + 72 + ], + "sidebar_text": [ + 176, + 176, + 176 + ], "tab_background_separator": [ 66, 70, diff --git a/firefoxThemes/waifus/Hanekawa_Tsubasa/theme.json b/firefoxThemes/waifus/Hanekawa_Tsubasa/theme.json index 3bf6a1e3..e2b99c8e 100644 --- a/firefoxThemes/waifus/Hanekawa_Tsubasa/theme.json +++ b/firefoxThemes/waifus/Hanekawa_Tsubasa/theme.json @@ -80,6 +80,31 @@ 195, 195 ], + "sidebar": [ + 27, + 24, + 32 + ], + "sidebar_highlight": [ + 90, + 59, + 93 + ], + "sidebar_highlight_text": [ + 235, + 214, + 252 + ], + "sidebar_border": [ + 33, + 28, + 35 + ], + "sidebar_text": [ + 195, + 195, + 195 + ], "tab_background_separator": [ 33, 28, diff --git a/firefoxThemes/waifus/Hatsune_Miku/theme.json b/firefoxThemes/waifus/Hatsune_Miku/theme.json index b710fcb4..ea0a28b3 100644 --- a/firefoxThemes/waifus/Hatsune_Miku/theme.json +++ b/firefoxThemes/waifus/Hatsune_Miku/theme.json @@ -80,6 +80,31 @@ 187, 187 ], + "sidebar": [ + 49, + 57, + 57 + ], + "sidebar_highlight": [ + 76, + 122, + 118 + ], + "sidebar_highlight_text": [ + 251, + 251, + 251 + ], + "sidebar_border": [ + 45, + 56, + 57 + ], + "sidebar_text": [ + 187, + 187, + 187 + ], "tab_background_separator": [ 45, 56, diff --git a/firefoxThemes/waifus/Hayase_Nagatoro/theme.json b/firefoxThemes/waifus/Hayase_Nagatoro/theme.json index 5ca36e36..49660f79 100644 --- a/firefoxThemes/waifus/Hayase_Nagatoro/theme.json +++ b/firefoxThemes/waifus/Hayase_Nagatoro/theme.json @@ -80,6 +80,31 @@ 187, 187 ], + "sidebar": [ + 23, + 23, + 23 + ], + "sidebar_highlight": [ + 93, + 62, + 47 + ], + "sidebar_highlight_text": [ + 251, + 251, + 251 + ], + "sidebar_border": [ + 39, + 38, + 38 + ], + "sidebar_text": [ + 187, + 187, + 187 + ], "tab_background_separator": [ 39, 38, diff --git a/firefoxThemes/waifus/Ishtar_Dark/theme.json b/firefoxThemes/waifus/Ishtar_Dark/theme.json index 212e7af7..d6f2990f 100644 --- a/firefoxThemes/waifus/Ishtar_Dark/theme.json +++ b/firefoxThemes/waifus/Ishtar_Dark/theme.json @@ -80,6 +80,31 @@ 194, 194 ], + "sidebar": [ + 10, + 10, + 6 + ], + "sidebar_highlight": [ + 85, + 57, + 25 + ], + "sidebar_highlight_text": [ + 251, + 251, + 251 + ], + "sidebar_border": [ + 26, + 26, + 0 + ], + "sidebar_text": [ + 194, + 194, + 194 + ], "tab_background_separator": [ 26, 26, diff --git a/firefoxThemes/waifus/Ishtar_Light/theme.json b/firefoxThemes/waifus/Ishtar_Light/theme.json index d5a843ce..821a8fbe 100644 --- a/firefoxThemes/waifus/Ishtar_Light/theme.json +++ b/firefoxThemes/waifus/Ishtar_Light/theme.json @@ -80,6 +80,31 @@ 36, 39 ], + "sidebar": [ + 252, + 252, + 250 + ], + "sidebar_highlight": [ + 255, + 245, + 199 + ], + "sidebar_highlight_text": [ + 57, + 61, + 69 + ], + "sidebar_border": [ + 238, + 238, + 238 + ], + "sidebar_text": [ + 37, + 36, + 39 + ], "tab_background_separator": [ 238, 238, diff --git a/firefoxThemes/waifus/Jabami_Yumeko/theme.json b/firefoxThemes/waifus/Jabami_Yumeko/theme.json index 388a4db2..22f78d2f 100644 --- a/firefoxThemes/waifus/Jabami_Yumeko/theme.json +++ b/firefoxThemes/waifus/Jabami_Yumeko/theme.json @@ -80,6 +80,31 @@ 219, 219 ], + "sidebar": [ + 22, + 3, + 4 + ], + "sidebar_highlight": [ + 57, + 12, + 16 + ], + "sidebar_highlight_text": [ + 251, + 251, + 251 + ], + "sidebar_border": [ + 30, + 0, + 0 + ], + "sidebar_text": [ + 219, + 219, + 219 + ], "tab_background_separator": [ 30, 0, diff --git a/firefoxThemes/waifus/Kanna/theme.json b/firefoxThemes/waifus/Kanna/theme.json index 422dedd8..f6726ca4 100644 --- a/firefoxThemes/waifus/Kanna/theme.json +++ b/firefoxThemes/waifus/Kanna/theme.json @@ -80,6 +80,31 @@ 208, 208 ], + "sidebar": [ + 21, + 15, + 32 + ], + "sidebar_highlight": [ + 73, + 39, + 68 + ], + "sidebar_highlight_text": [ + 251, + 251, + 251 + ], + "sidebar_border": [ + 34, + 31, + 46 + ], + "sidebar_text": [ + 208, + 208, + 208 + ], "tab_background_separator": [ 34, 31, diff --git a/firefoxThemes/waifus/Katsuragi_Misato/theme.json b/firefoxThemes/waifus/Katsuragi_Misato/theme.json index 47c4a7b9..ee522ec2 100644 --- a/firefoxThemes/waifus/Katsuragi_Misato/theme.json +++ b/firefoxThemes/waifus/Katsuragi_Misato/theme.json @@ -80,6 +80,31 @@ 163, 176 ], + "sidebar": [ + 56, + 38, + 57 + ], + "sidebar_highlight": [ + 138, + 43, + 77 + ], + "sidebar_highlight_text": [ + 255, + 255, + 255 + ], + "sidebar_border": [ + 67, + 46, + 61 + ], + "sidebar_text": [ + 181, + 163, + 176 + ], "tab_background_separator": [ 67, 46, diff --git a/firefoxThemes/waifus/Kirino/theme.json b/firefoxThemes/waifus/Kirino/theme.json index 7af409aa..097dd3c7 100644 --- a/firefoxThemes/waifus/Kirino/theme.json +++ b/firefoxThemes/waifus/Kirino/theme.json @@ -80,6 +80,31 @@ 203, 203 ], + "sidebar": [ + 24, + 40, + 38 + ], + "sidebar_highlight": [ + 61, + 33, + 62 + ], + "sidebar_highlight_text": [ + 251, + 251, + 251 + ], + "sidebar_border": [ + 30, + 50, + 47 + ], + "sidebar_text": [ + 203, + 203, + 203 + ], "tab_background_separator": [ 30, 50, diff --git a/firefoxThemes/waifus/Konata/theme.json b/firefoxThemes/waifus/Konata/theme.json index 79bc1435..8e1f0b59 100644 --- a/firefoxThemes/waifus/Konata/theme.json +++ b/firefoxThemes/waifus/Konata/theme.json @@ -80,6 +80,31 @@ 237, 255 ], + "sidebar": [ + 52, + 77, + 130 + ], + "sidebar_highlight": [ + 58, + 108, + 117 + ], + "sidebar_highlight_text": [ + 231, + 233, + 255 + ], + "sidebar_border": [ + 62, + 93, + 153 + ], + "sidebar_text": [ + 243, + 237, + 255 + ], "tab_background_separator": [ 62, 93, diff --git a/firefoxThemes/waifus/Mai_Dark/theme.json b/firefoxThemes/waifus/Mai_Dark/theme.json index 87b823de..0dfcf8eb 100644 --- a/firefoxThemes/waifus/Mai_Dark/theme.json +++ b/firefoxThemes/waifus/Mai_Dark/theme.json @@ -80,6 +80,31 @@ 187, 187 ], + "sidebar": [ + 39, + 39, + 80 + ], + "sidebar_highlight": [ + 35, + 81, + 97 + ], + "sidebar_highlight_text": [ + 251, + 251, + 251 + ], + "sidebar_border": [ + 43, + 44, + 87 + ], + "sidebar_text": [ + 187, + 187, + 187 + ], "tab_background_separator": [ 43, 44, diff --git a/firefoxThemes/waifus/Mai_Light/theme.json b/firefoxThemes/waifus/Mai_Light/theme.json index fcb48226..d6c5a609 100644 --- a/firefoxThemes/waifus/Mai_Light/theme.json +++ b/firefoxThemes/waifus/Mai_Light/theme.json @@ -80,6 +80,31 @@ 36, 39 ], + "sidebar": [ + 248, + 239, + 238 + ], + "sidebar_highlight": [ + 177, + 176, + 210 + ], + "sidebar_highlight_text": [ + 57, + 61, + 69 + ], + "sidebar_border": [ + 230, + 216, + 215 + ], + "sidebar_text": [ + 37, + 36, + 39 + ], "tab_background_separator": [ 230, 216, diff --git a/firefoxThemes/waifus/Maika/theme.json b/firefoxThemes/waifus/Maika/theme.json index 1c04d133..88a1e285 100644 --- a/firefoxThemes/waifus/Maika/theme.json +++ b/firefoxThemes/waifus/Maika/theme.json @@ -80,6 +80,31 @@ 201, 201 ], + "sidebar": [ + 38, + 6, + 51 + ], + "sidebar_highlight": [ + 61, + 21, + 53 + ], + "sidebar_highlight_text": [ + 251, + 251, + 251 + ], + "sidebar_border": [ + 52, + 17, + 64 + ], + "sidebar_text": [ + 201, + 201, + 201 + ], "tab_background_separator": [ 52, 17, diff --git a/firefoxThemes/waifus/Makise_Kurisu/theme.json b/firefoxThemes/waifus/Makise_Kurisu/theme.json index ffca3c3f..067469f3 100644 --- a/firefoxThemes/waifus/Makise_Kurisu/theme.json +++ b/firefoxThemes/waifus/Makise_Kurisu/theme.json @@ -80,6 +80,31 @@ 195, 195 ], + "sidebar": [ + 25, + 13, + 13 + ], + "sidebar_highlight": [ + 57, + 23, + 23 + ], + "sidebar_highlight_text": [ + 251, + 251, + 251 + ], + "sidebar_border": [ + 43, + 25, + 25 + ], + "sidebar_text": [ + 195, + 195, + 195 + ], "tab_background_separator": [ 43, 25, diff --git a/firefoxThemes/waifus/Maple_Dark/theme.json b/firefoxThemes/waifus/Maple_Dark/theme.json index 9666ec44..b8c7e662 100644 --- a/firefoxThemes/waifus/Maple_Dark/theme.json +++ b/firefoxThemes/waifus/Maple_Dark/theme.json @@ -80,6 +80,31 @@ 204, 204 ], + "sidebar": [ + 42, + 24, + 24 + ], + "sidebar_highlight": [ + 41, + 80, + 67 + ], + "sidebar_highlight_text": [ + 251, + 251, + 251 + ], + "sidebar_border": [ + 65, + 40, + 40 + ], + "sidebar_text": [ + 204, + 204, + 204 + ], "tab_background_separator": [ 65, 40, diff --git a/firefoxThemes/waifus/Maple_Light/theme.json b/firefoxThemes/waifus/Maple_Light/theme.json index e63f04be..096b0d8c 100644 --- a/firefoxThemes/waifus/Maple_Light/theme.json +++ b/firefoxThemes/waifus/Maple_Light/theme.json @@ -80,6 +80,31 @@ 16, 16 ], + "sidebar": [ + 249, + 202, + 146 + ], + "sidebar_highlight": [ + 236, + 158, + 116 + ], + "sidebar_highlight_text": [ + 101, + 28, + 16 + ], + "sidebar_border": [ + 241, + 187, + 115 + ], + "sidebar_text": [ + 16, + 16, + 16 + ], "tab_background_separator": [ 241, 187, diff --git a/firefoxThemes/waifus/Megumin/theme.json b/firefoxThemes/waifus/Megumin/theme.json index a4e81183..aa8e564e 100644 --- a/firefoxThemes/waifus/Megumin/theme.json +++ b/firefoxThemes/waifus/Megumin/theme.json @@ -80,6 +80,31 @@ 187, 187 ], + "sidebar": [ + 40, + 29, + 34 + ], + "sidebar_highlight": [ + 86, + 48, + 54 + ], + "sidebar_highlight_text": [ + 226, + 203, + 20 + ], + "sidebar_border": [ + 50, + 38, + 44 + ], + "sidebar_text": [ + 187, + 187, + 187 + ], "tab_background_separator": [ 50, 38, diff --git a/firefoxThemes/waifus/Miia/theme.json b/firefoxThemes/waifus/Miia/theme.json index b2e956c3..044125c2 100644 --- a/firefoxThemes/waifus/Miia/theme.json +++ b/firefoxThemes/waifus/Miia/theme.json @@ -80,6 +80,31 @@ 239, 239 ], + "sidebar": [ + 51, + 14, + 27 + ], + "sidebar_highlight": [ + 91, + 50, + 37 + ], + "sidebar_highlight_text": [ + 251, + 251, + 251 + ], + "sidebar_border": [ + 65, + 18, + 33 + ], + "sidebar_text": [ + 239, + 239, + 239 + ], "tab_background_separator": [ 65, 18, diff --git a/firefoxThemes/waifus/Mioda_Ibuki_Dark/theme.json b/firefoxThemes/waifus/Mioda_Ibuki_Dark/theme.json index 18e9b15d..d547f5f8 100644 --- a/firefoxThemes/waifus/Mioda_Ibuki_Dark/theme.json +++ b/firefoxThemes/waifus/Mioda_Ibuki_Dark/theme.json @@ -80,6 +80,31 @@ 187, 187 ], + "sidebar": [ + 26, + 30, + 32 + ], + "sidebar_highlight": [ + 69, + 39, + 53 + ], + "sidebar_highlight_text": [ + 251, + 251, + 251 + ], + "sidebar_border": [ + 30, + 32, + 33 + ], + "sidebar_text": [ + 187, + 187, + 187 + ], "tab_background_separator": [ 30, 32, diff --git a/firefoxThemes/waifus/Mioda_Ibuki_Light/theme.json b/firefoxThemes/waifus/Mioda_Ibuki_Light/theme.json index 7b345e49..909a11ff 100644 --- a/firefoxThemes/waifus/Mioda_Ibuki_Light/theme.json +++ b/firefoxThemes/waifus/Mioda_Ibuki_Light/theme.json @@ -80,6 +80,31 @@ 36, 38 ], + "sidebar": [ + 255, + 234, + 249 + ], + "sidebar_highlight": [ + 142, + 219, + 255 + ], + "sidebar_highlight_text": [ + 57, + 61, + 69 + ], + "sidebar_border": [ + 237, + 225, + 233 + ], + "sidebar_text": [ + 39, + 36, + 38 + ], "tab_background_separator": [ 237, 225, diff --git a/firefoxThemes/waifus/Monika_Dark/theme.json b/firefoxThemes/waifus/Monika_Dark/theme.json index 85b089c7..c62d41be 100644 --- a/firefoxThemes/waifus/Monika_Dark/theme.json +++ b/firefoxThemes/waifus/Monika_Dark/theme.json @@ -80,6 +80,31 @@ 187, 187 ], + "sidebar": [ + 26, + 30, + 18 + ], + "sidebar_highlight": [ + 48, + 67, + 43 + ], + "sidebar_highlight_text": [ + 255, + 255, + 255 + ], + "sidebar_border": [ + 32, + 36, + 22 + ], + "sidebar_text": [ + 187, + 187, + 187 + ], "tab_background_separator": [ 32, 36, diff --git a/firefoxThemes/waifus/Monika_Light/theme.json b/firefoxThemes/waifus/Monika_Light/theme.json index c93bec69..7c12405c 100644 --- a/firefoxThemes/waifus/Monika_Light/theme.json +++ b/firefoxThemes/waifus/Monika_Light/theme.json @@ -80,6 +80,31 @@ 36, 39 ], + "sidebar": [ + 237, + 255, + 236 + ], + "sidebar_highlight": [ + 169, + 236, + 172 + ], + "sidebar_highlight_text": [ + 57, + 61, + 69 + ], + "sidebar_border": [ + 226, + 238, + 227 + ], + "sidebar_text": [ + 37, + 36, + 39 + ], "tab_background_separator": [ 226, 238, diff --git a/firefoxThemes/waifus/Nakano_Miku/theme.json b/firefoxThemes/waifus/Nakano_Miku/theme.json index 932ebdca..cee91d8f 100644 --- a/firefoxThemes/waifus/Nakano_Miku/theme.json +++ b/firefoxThemes/waifus/Nakano_Miku/theme.json @@ -80,6 +80,31 @@ 237, 255 ], + "sidebar": [ + 35, + 63, + 85 + ], + "sidebar_highlight": [ + 73, + 129, + 146 + ], + "sidebar_highlight_text": [ + 193, + 253, + 255 + ], + "sidebar_border": [ + 38, + 84, + 107 + ], + "sidebar_text": [ + 243, + 237, + 255 + ], "tab_background_separator": [ 38, 84, diff --git a/firefoxThemes/waifus/Nakano_Nino/theme.json b/firefoxThemes/waifus/Nakano_Nino/theme.json index be61878e..89a3f2c8 100644 --- a/firefoxThemes/waifus/Nakano_Nino/theme.json +++ b/firefoxThemes/waifus/Nakano_Nino/theme.json @@ -80,6 +80,31 @@ 187, 187 ], + "sidebar": [ + 34, + 28, + 35 + ], + "sidebar_highlight": [ + 69, + 39, + 53 + ], + "sidebar_highlight_text": [ + 251, + 251, + 251 + ], + "sidebar_border": [ + 35, + 32, + 36 + ], + "sidebar_text": [ + 187, + 187, + 187 + ], "tab_background_separator": [ 35, 32, diff --git a/firefoxThemes/waifus/Natsuki_Dark/theme.json b/firefoxThemes/waifus/Natsuki_Dark/theme.json index c6d5ef1d..9666d9c5 100644 --- a/firefoxThemes/waifus/Natsuki_Dark/theme.json +++ b/firefoxThemes/waifus/Natsuki_Dark/theme.json @@ -80,6 +80,31 @@ 187, 187 ], + "sidebar": [ + 51, + 10, + 43 + ], + "sidebar_highlight": [ + 96, + 43, + 80 + ], + "sidebar_highlight_text": [ + 230, + 175, + 202 + ], + "sidebar_border": [ + 56, + 25, + 39 + ], + "sidebar_text": [ + 187, + 187, + 187 + ], "tab_background_separator": [ 56, 25, diff --git a/firefoxThemes/waifus/Natsuki_Light/theme.json b/firefoxThemes/waifus/Natsuki_Light/theme.json index 14581719..8b0acdfd 100644 --- a/firefoxThemes/waifus/Natsuki_Light/theme.json +++ b/firefoxThemes/waifus/Natsuki_Light/theme.json @@ -80,6 +80,31 @@ 0, 0 ], + "sidebar": [ + 243, + 207, + 224 + ], + "sidebar_highlight": [ + 220, + 153, + 187 + ], + "sidebar_highlight_text": [ + 255, + 255, + 255 + ], + "sidebar_border": [ + 241, + 215, + 230 + ], + "sidebar_text": [ + 0, + 0, + 0 + ], "tab_background_separator": [ 241, 215, diff --git a/firefoxThemes/waifus/Ram/theme.json b/firefoxThemes/waifus/Ram/theme.json index 0e74711e..578203ec 100644 --- a/firefoxThemes/waifus/Ram/theme.json +++ b/firefoxThemes/waifus/Ram/theme.json @@ -80,6 +80,31 @@ 187, 187 ], + "sidebar": [ + 55, + 49, + 57 + ], + "sidebar_highlight": [ + 122, + 84, + 111 + ], + "sidebar_highlight_text": [ + 251, + 251, + 251 + ], + "sidebar_border": [ + 54, + 45, + 57 + ], + "sidebar_text": [ + 187, + 187, + 187 + ], "tab_background_separator": [ 54, 45, diff --git a/firefoxThemes/waifus/Rei/theme.json b/firefoxThemes/waifus/Rei/theme.json index 08dce019..8a588776 100644 --- a/firefoxThemes/waifus/Rei/theme.json +++ b/firefoxThemes/waifus/Rei/theme.json @@ -80,6 +80,31 @@ 210, 210 ], + "sidebar": [ + 25, + 27, + 26 + ], + "sidebar_highlight": [ + 37, + 67, + 90 + ], + "sidebar_highlight_text": [ + 255, + 255, + 255 + ], + "sidebar_border": [ + 30, + 33, + 31 + ], + "sidebar_text": [ + 210, + 210, + 210 + ], "tab_background_separator": [ 30, 33, diff --git a/firefoxThemes/waifus/Rem/theme.json b/firefoxThemes/waifus/Rem/theme.json index bd071396..7070d52e 100644 --- a/firefoxThemes/waifus/Rem/theme.json +++ b/firefoxThemes/waifus/Rem/theme.json @@ -80,6 +80,31 @@ 187, 187 ], + "sidebar": [ + 49, + 50, + 57 + ], + "sidebar_highlight": [ + 76, + 99, + 122 + ], + "sidebar_highlight_text": [ + 251, + 251, + 251 + ], + "sidebar_border": [ + 45, + 52, + 57 + ], + "sidebar_text": [ + 187, + 187, + 187 + ], "tab_background_separator": [ 45, 52, diff --git a/firefoxThemes/waifus/Rias_Crimson/theme.json b/firefoxThemes/waifus/Rias_Crimson/theme.json index 65dbe84c..dd388eb4 100644 --- a/firefoxThemes/waifus/Rias_Crimson/theme.json +++ b/firefoxThemes/waifus/Rias_Crimson/theme.json @@ -80,6 +80,31 @@ 250, 250 ], + "sidebar": [ + 64, + 16, + 16 + ], + "sidebar_highlight": [ + 130, + 46, + 46 + ], + "sidebar_highlight_text": [ + 251, + 251, + 251 + ], + "sidebar_border": [ + 85, + 24, + 24 + ], + "sidebar_text": [ + 250, + 250, + 250 + ], "tab_background_separator": [ 85, 24, diff --git a/firefoxThemes/waifus/Rias_Onyx/theme.json b/firefoxThemes/waifus/Rias_Onyx/theme.json index 9e218d57..d33b157a 100644 --- a/firefoxThemes/waifus/Rias_Onyx/theme.json +++ b/firefoxThemes/waifus/Rias_Onyx/theme.json @@ -80,6 +80,31 @@ 216, 216 ], + "sidebar": [ + 28, + 6, + 7 + ], + "sidebar_highlight": [ + 57, + 12, + 16 + ], + "sidebar_highlight_text": [ + 251, + 251, + 251 + ], + "sidebar_border": [ + 34, + 0, + 0 + ], + "sidebar_text": [ + 216, + 216, + 216 + ], "tab_background_separator": [ 34, 0, diff --git a/firefoxThemes/waifus/Rory_Mercury/theme.json b/firefoxThemes/waifus/Rory_Mercury/theme.json index 7e83ade8..083bfe86 100644 --- a/firefoxThemes/waifus/Rory_Mercury/theme.json +++ b/firefoxThemes/waifus/Rory_Mercury/theme.json @@ -80,6 +80,31 @@ 195, 195 ], + "sidebar": [ + 17, + 17, + 20 + ], + "sidebar_highlight": [ + 57, + 23, + 23 + ], + "sidebar_highlight_text": [ + 251, + 251, + 251 + ], + "sidebar_border": [ + 38, + 22, + 22 + ], + "sidebar_text": [ + 195, + 195, + 195 + ], "tab_background_separator": [ 38, 22, diff --git a/firefoxThemes/waifus/Ryuko_Dark/theme.json b/firefoxThemes/waifus/Ryuko_Dark/theme.json index eaa9670f..0c4e11a1 100644 --- a/firefoxThemes/waifus/Ryuko_Dark/theme.json +++ b/firefoxThemes/waifus/Ryuko_Dark/theme.json @@ -80,6 +80,31 @@ 187, 187 ], + "sidebar": [ + 40, + 47, + 53 + ], + "sidebar_highlight": [ + 86, + 48, + 54 + ], + "sidebar_highlight_text": [ + 226, + 203, + 20 + ], + "sidebar_border": [ + 48, + 56, + 61 + ], + "sidebar_text": [ + 187, + 187, + 187 + ], "tab_background_separator": [ 48, 56, diff --git a/firefoxThemes/waifus/Ryuko_Light/theme.json b/firefoxThemes/waifus/Ryuko_Light/theme.json index 92f51b3a..1738f0c4 100644 --- a/firefoxThemes/waifus/Ryuko_Light/theme.json +++ b/firefoxThemes/waifus/Ryuko_Light/theme.json @@ -80,6 +80,31 @@ 16, 16 ], + "sidebar": [ + 238, + 246, + 255 + ], + "sidebar_highlight": [ + 116, + 173, + 236 + ], + "sidebar_highlight_text": [ + 16, + 51, + 101 + ], + "sidebar_border": [ + 229, + 229, + 238 + ], + "sidebar_text": [ + 16, + 16, + 16 + ], "tab_background_separator": [ 229, 229, diff --git a/firefoxThemes/waifus/Sagiri/theme.json b/firefoxThemes/waifus/Sagiri/theme.json index b36ecea2..56bedf60 100644 --- a/firefoxThemes/waifus/Sagiri/theme.json +++ b/firefoxThemes/waifus/Sagiri/theme.json @@ -80,6 +80,31 @@ 237, 255 ], + "sidebar": [ + 8, + 51, + 46 + ], + "sidebar_highlight": [ + 5, + 36, + 33 + ], + "sidebar_highlight_text": [ + 231, + 233, + 255 + ], + "sidebar_border": [ + 13, + 81, + 74 + ], + "sidebar_text": [ + 243, + 237, + 255 + ], "tab_background_separator": [ 13, 81, diff --git a/firefoxThemes/waifus/Satsuki_Dark/theme.json b/firefoxThemes/waifus/Satsuki_Dark/theme.json index 7f5a3919..ddc69443 100644 --- a/firefoxThemes/waifus/Satsuki_Dark/theme.json +++ b/firefoxThemes/waifus/Satsuki_Dark/theme.json @@ -80,6 +80,31 @@ 211, 211 ], + "sidebar": [ + 29, + 33, + 35 + ], + "sidebar_highlight": [ + 93, + 38, + 38 + ], + "sidebar_highlight_text": [ + 254, + 254, + 254 + ], + "sidebar_border": [ + 50, + 55, + 58 + ], + "sidebar_text": [ + 211, + 211, + 211 + ], "tab_background_separator": [ 50, 55, diff --git a/firefoxThemes/waifus/Satsuki_Light/theme.json b/firefoxThemes/waifus/Satsuki_Light/theme.json index a4249b53..f45f6ca7 100644 --- a/firefoxThemes/waifus/Satsuki_Light/theme.json +++ b/firefoxThemes/waifus/Satsuki_Light/theme.json @@ -80,6 +80,31 @@ 16, 16 ], + "sidebar": [ + 238, + 246, + 255 + ], + "sidebar_highlight": [ + 116, + 143, + 236 + ], + "sidebar_highlight_text": [ + 14, + 44, + 87 + ], + "sidebar_border": [ + 229, + 229, + 238 + ], + "sidebar_text": [ + 16, + 16, + 16 + ], "tab_background_separator": [ 229, 229, diff --git a/firefoxThemes/waifus/Sayori_Dark/theme.json b/firefoxThemes/waifus/Sayori_Dark/theme.json index 35a6b4be..db25d3cc 100644 --- a/firefoxThemes/waifus/Sayori_Dark/theme.json +++ b/firefoxThemes/waifus/Sayori_Dark/theme.json @@ -80,6 +80,31 @@ 187, 187 ], + "sidebar": [ + 19, + 29, + 45 + ], + "sidebar_highlight": [ + 35, + 65, + 100 + ], + "sidebar_highlight_text": [ + 156, + 245, + 255 + ], + "sidebar_border": [ + 26, + 28, + 45 + ], + "sidebar_text": [ + 187, + 187, + 187 + ], "tab_background_separator": [ 26, 28, diff --git a/firefoxThemes/waifus/Sayori_Light/theme.json b/firefoxThemes/waifus/Sayori_Light/theme.json index 08ac65a2..1ec02186 100644 --- a/firefoxThemes/waifus/Sayori_Light/theme.json +++ b/firefoxThemes/waifus/Sayori_Light/theme.json @@ -80,6 +80,31 @@ 36, 39 ], + "sidebar": [ + 236, + 251, + 255 + ], + "sidebar_highlight": [ + 169, + 200, + 236 + ], + "sidebar_highlight_text": [ + 57, + 61, + 69 + ], + "sidebar_border": [ + 226, + 234, + 238 + ], + "sidebar_text": [ + 37, + 36, + 39 + ], "tab_background_separator": [ 226, 234, diff --git a/firefoxThemes/waifus/Shigure/theme.json b/firefoxThemes/waifus/Shigure/theme.json index 8fd26074..471950c5 100644 --- a/firefoxThemes/waifus/Shigure/theme.json +++ b/firefoxThemes/waifus/Shigure/theme.json @@ -80,6 +80,31 @@ 16, 16 ], + "sidebar": [ + 204, + 202, + 255 + ], + "sidebar_highlight": [ + 87, + 86, + 162 + ], + "sidebar_highlight_text": [ + 211, + 220, + 253 + ], + "sidebar_border": [ + 214, + 213, + 254 + ], + "sidebar_text": [ + 16, + 16, + 16 + ], "tab_background_separator": [ 214, 213, diff --git a/firefoxThemes/waifus/Shima_Rin/theme.json b/firefoxThemes/waifus/Shima_Rin/theme.json index b4895274..59168bbb 100644 --- a/firefoxThemes/waifus/Shima_Rin/theme.json +++ b/firefoxThemes/waifus/Shima_Rin/theme.json @@ -80,6 +80,31 @@ 176, 176 ], + "sidebar": [ + 44, + 48, + 57 + ], + "sidebar_highlight": [ + 79, + 58, + 78 + ], + "sidebar_highlight_text": [ + 251, + 251, + 251 + ], + "sidebar_border": [ + 57, + 62, + 72 + ], + "sidebar_text": [ + 176, + 176, + 176 + ], "tab_background_separator": [ 57, 62, diff --git a/firefoxThemes/waifus/Sonoda_Umi/theme.json b/firefoxThemes/waifus/Sonoda_Umi/theme.json index 2791bdda..cc447878 100644 --- a/firefoxThemes/waifus/Sonoda_Umi/theme.json +++ b/firefoxThemes/waifus/Sonoda_Umi/theme.json @@ -80,6 +80,31 @@ 208, 208 ], + "sidebar": [ + 21, + 23, + 57 + ], + "sidebar_highlight": [ + 39, + 42, + 89 + ], + "sidebar_highlight_text": [ + 251, + 251, + 251 + ], + "sidebar_border": [ + 28, + 31, + 80 + ], + "sidebar_text": [ + 208, + 208, + 208 + ], "tab_background_separator": [ 28, 31, diff --git a/firefoxThemes/waifus/Tohru/theme.json b/firefoxThemes/waifus/Tohru/theme.json index f012718a..dac6efdb 100644 --- a/firefoxThemes/waifus/Tohru/theme.json +++ b/firefoxThemes/waifus/Tohru/theme.json @@ -80,6 +80,31 @@ 16, 16 ], + "sidebar": [ + 253, + 227, + 136 + ], + "sidebar_highlight": [ + 236, + 158, + 116 + ], + "sidebar_highlight_text": [ + 101, + 32, + 9 + ], + "sidebar_border": [ + 232, + 191, + 105 + ], + "sidebar_text": [ + 16, + 16, + 16 + ], "tab_background_separator": [ 232, 191, diff --git a/firefoxThemes/waifus/Tohsaka_Rin/theme.json b/firefoxThemes/waifus/Tohsaka_Rin/theme.json index 50d0b2d9..385852a7 100644 --- a/firefoxThemes/waifus/Tohsaka_Rin/theme.json +++ b/firefoxThemes/waifus/Tohsaka_Rin/theme.json @@ -80,6 +80,31 @@ 187, 187 ], + "sidebar": [ + 21, + 19, + 20 + ], + "sidebar_highlight": [ + 57, + 23, + 23 + ], + "sidebar_highlight_text": [ + 251, + 251, + 251 + ], + "sidebar_border": [ + 33, + 30, + 30 + ], + "sidebar_text": [ + 187, + 187, + 187 + ], "tab_background_separator": [ 33, 30, diff --git a/firefoxThemes/waifus/Vanilla/theme.json b/firefoxThemes/waifus/Vanilla/theme.json index 1f14ac2f..fad9d060 100644 --- a/firefoxThemes/waifus/Vanilla/theme.json +++ b/firefoxThemes/waifus/Vanilla/theme.json @@ -80,6 +80,31 @@ 205, 205 ], + "sidebar": [ + 39, + 41, + 53 + ], + "sidebar_highlight": [ + 55, + 72, + 114 + ], + "sidebar_highlight_text": [ + 254, + 254, + 254 + ], + "sidebar_border": [ + 56, + 58, + 80 + ], + "sidebar_text": [ + 205, + 205, + 205 + ], "tab_background_separator": [ 56, 58, diff --git a/firefoxThemes/waifus/Yukinoshita_Yukino/theme.json b/firefoxThemes/waifus/Yukinoshita_Yukino/theme.json index ab7a6019..35313c68 100644 --- a/firefoxThemes/waifus/Yukinoshita_Yukino/theme.json +++ b/firefoxThemes/waifus/Yukinoshita_Yukino/theme.json @@ -80,6 +80,31 @@ 187, 187 ], + "sidebar": [ + 34, + 36, + 41 + ], + "sidebar_highlight": [ + 45, + 59, + 85 + ], + "sidebar_highlight_text": [ + 251, + 251, + 251 + ], + "sidebar_border": [ + 43, + 45, + 50 + ], + "sidebar_text": [ + 187, + 187, + 187 + ], "tab_background_separator": [ 43, 45, diff --git a/firefoxThemes/waifus/Yuri_Dark/theme.json b/firefoxThemes/waifus/Yuri_Dark/theme.json index f8084f4e..c28cd920 100644 --- a/firefoxThemes/waifus/Yuri_Dark/theme.json +++ b/firefoxThemes/waifus/Yuri_Dark/theme.json @@ -80,6 +80,31 @@ 218, 218 ], + "sidebar": [ + 65, + 45, + 98 + ], + "sidebar_highlight": [ + 76, + 42, + 112 + ], + "sidebar_highlight_text": [ + 179, + 158, + 255 + ], + "sidebar_border": [ + 77, + 58, + 99 + ], + "sidebar_text": [ + 218, + 218, + 218 + ], "tab_background_separator": [ 77, 58, diff --git a/firefoxThemes/waifus/Yuri_Light/theme.json b/firefoxThemes/waifus/Yuri_Light/theme.json index cb0be063..ad845159 100644 --- a/firefoxThemes/waifus/Yuri_Light/theme.json +++ b/firefoxThemes/waifus/Yuri_Light/theme.json @@ -80,6 +80,31 @@ 36, 39 ], + "sidebar": [ + 245, + 236, + 255 + ], + "sidebar_highlight": [ + 173, + 160, + 210 + ], + "sidebar_highlight_text": [ + 57, + 61, + 69 + ], + "sidebar_border": [ + 226, + 227, + 238 + ], + "sidebar_text": [ + 37, + 36, + 39 + ], "tab_background_separator": [ 226, 227, diff --git a/firefoxThemes/waifus/Zero_Two_Dark/theme.json b/firefoxThemes/waifus/Zero_Two_Dark/theme.json index 7f8f278a..d33770f9 100644 --- a/firefoxThemes/waifus/Zero_Two_Dark/theme.json +++ b/firefoxThemes/waifus/Zero_Two_Dark/theme.json @@ -80,6 +80,31 @@ 239, 239 ], + "sidebar": [ + 51, + 14, + 14 + ], + "sidebar_highlight": [ + 83, + 30, + 30 + ], + "sidebar_highlight_text": [ + 251, + 251, + 251 + ], + "sidebar_border": [ + 72, + 24, + 24 + ], + "sidebar_text": [ + 239, + 239, + 239 + ], "tab_background_separator": [ 72, 24, diff --git a/firefoxThemes/waifus/Zero_Two_Light/theme.json b/firefoxThemes/waifus/Zero_Two_Light/theme.json index 32626194..4b0753ec 100644 --- a/firefoxThemes/waifus/Zero_Two_Light/theme.json +++ b/firefoxThemes/waifus/Zero_Two_Light/theme.json @@ -80,6 +80,31 @@ 36, 39 ], + "sidebar": [ + 252, + 252, + 252 + ], + "sidebar_highlight": [ + 233, + 180, + 184 + ], + "sidebar_highlight_text": [ + 57, + 61, + 69 + ], + "sidebar_border": [ + 238, + 238, + 238 + ], + "sidebar_text": [ + 37, + 36, + 39 + ], "tab_background_separator": [ 238, 238, diff --git a/masterExtension/installable_extension/manifest.json b/masterExtension/installable_extension/manifest.json index f5c49139..e91230f7 100644 --- a/masterExtension/installable_extension/manifest.json +++ b/masterExtension/installable_extension/manifest.json @@ -1,6 +1,6 @@ { "name": "The Doki Theme", - "version": "15.0.0", + "version": "15.0.2", "description": "Supports consistency for the the anime based themes.", "permissions": [ "activeTab", diff --git a/masterExtension/package.json b/masterExtension/package.json index f314577f..bb52797e 100644 --- a/masterExtension/package.json +++ b/masterExtension/package.json @@ -1,6 +1,6 @@ { "name": "doki-theme-web", - "version": "15.0.0", + "version": "15.0.2", "description": "Anime based themes for your chrome browser!", "main": "index.js", "repository": "git@github.com:doki-theme/doki-theme-web.git", diff --git a/masterExtension/public/manifest.json b/masterExtension/public/manifest.json index f5c49139..e91230f7 100644 --- a/masterExtension/public/manifest.json +++ b/masterExtension/public/manifest.json @@ -1,6 +1,6 @@ { "name": "The Doki Theme", - "version": "15.0.0", + "version": "15.0.2", "description": "Supports consistency for the the anime based themes.", "permissions": [ "activeTab", diff --git a/package.json b/package.json index 3369bca8..c96d53b2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "doki-theme-web", - "version": "15.0.0", + "version": "15.0.2", "description": "Browse the web with your waifu", "main": "index.js", "repository": "git@github.com:doki-theme/doki-theme-web.git",