From 3aca5de85700f4544fadd5c8ce450f89e0fa4b1a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20F=2E=20=28BeyondMagic/koetemagie=29?= Date: Mon, 7 Oct 2024 09:03:01 -0300 Subject: [PATCH 01/23] feat(sorting): add clone functionality --- scripts/sort_themes.nu | 111 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 111 insertions(+) create mode 100644 scripts/sort_themes.nu diff --git a/scripts/sort_themes.nu b/scripts/sort_themes.nu new file mode 100644 index 0000000..a907564 --- /dev/null +++ b/scripts/sort_themes.nu @@ -0,0 +1,111 @@ +#!/usr/bin/env -S nu --stdin +# +# Repository: FirefoxCSS-Store +# Author: BeyondMagic - João Farias 2024 +# Maintainer: BeyondMagic - João Farias 2024 + +# Github API. +export def github []: record -> record { + let item = { + #... + pushed_at: '2023-03-06T16:47:46Z' + stargazers_count: '2' + owner: { + avatar_url: 'https://avatars.githubusercontent.com/u/9977591?v=4' + } + } + + { + pushed_at: $item.pushed_at + stargazers_count: ($item.stargazers_count | into int) + avatar: $item.owner.avatar_url + } +} + +# In case of not having API, clone and get information yourself. +export def clone [ + --temp: string = '/tmp/firefoxcss-store/' # Temporary folder to save themes. +]: record -> record { + + mkdir $temp + + let repo = $in + let folder = $temp | path join $repo.name + + let success = if ($folder | path exists) { + cd $folder + + ^git pull + + true + } else { + + let link = 'git@github.com:' + $repo.owner + '/' + $repo.name + '.git' + + let clone_status = ^git clone $link $folder + | complete + | get exit_code + + # Could not clone the repository for unknown reasons. + if $clone_status != 0 { + print --stderr $"Could not clone '($link)'." + false + } + + cd $folder + + true + } + + let pushed_at = if $success { + ^git show --quiet --date='format-local:%Y-%m-%dT%H:%M:%SZ' --format="%cd" + } else { + "" + } + + { + pushed_at: $pushed_at + stargazers_count: -1 + avatar: "" + } +} + +# Parse link of repository. +def parse_link []: string -> record { + let data = $in + | split row '/' + | last 2 + + { + owner: $data.0 + name: $data.1 + } +} + +# Get extra information from themes and save it. +export def main [ + token: string # API Token. + --delay: duration = 1sec # Delay between API calls. + --source: string = "../themes.json" # Themes data. + --output: string = "./themes.json" # New data with themes. + --timezone: string = "UTC0" # Timezone for git calls. +]: nothing -> nothing { + + $env.TZ = $timezone + + let data = open $source + | each {|item| + + let info = if ($item.link | str contains 'github') { + sleep $delay + $item.link | parse_link | github + } else { + $item.link | parse_link | clone + } + + { + ...$item + ...$info + } + } +} From ae97ef81c3555fd014885849dedb40b77b27efc8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20F=2E=20=28BeyondMagic/koetemagie=29?= Date: Mon, 7 Oct 2024 09:08:01 -0300 Subject: [PATCH 02/23] feat(sorting): add github functionality --- scripts/sort_themes.nu | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/scripts/sort_themes.nu b/scripts/sort_themes.nu index a907564..862ca0e 100644 --- a/scripts/sort_themes.nu +++ b/scripts/sort_themes.nu @@ -5,14 +5,13 @@ # Maintainer: BeyondMagic - João Farias 2024 # Github API. -export def github []: record -> record { - let item = { - #... - pushed_at: '2023-03-06T16:47:46Z' - stargazers_count: '2' - owner: { - avatar_url: 'https://avatars.githubusercontent.com/u/9977591?v=4' - } +export def github [ + token: string # API Token. +]: record -> record { + let repo = $in + + let item = http get $"https://api.github.com/repos/($repo.owner)/($repo.name)" --headers { + Authorization: $"Bearer ($token)" } { @@ -98,7 +97,7 @@ export def main [ let info = if ($item.link | str contains 'github') { sleep $delay - $item.link | parse_link | github + $item.link | parse_link | github $token } else { $item.link | parse_link | clone } From 5596027eae3aa7905d620fcd94f7b58b570140e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20F=2E=20=28BeyondMagic/koetemagie=29?= Date: Mon, 7 Oct 2024 09:13:30 -0300 Subject: [PATCH 03/23] feat(sorting): allow github api to make calls without token --- scripts/sort_themes.nu | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/scripts/sort_themes.nu b/scripts/sort_themes.nu index 862ca0e..40227cc 100644 --- a/scripts/sort_themes.nu +++ b/scripts/sort_themes.nu @@ -6,14 +6,20 @@ # Github API. export def github [ - token: string # API Token. + token?: string # API Token. ]: record -> record { let repo = $in - let item = http get $"https://api.github.com/repos/($repo.owner)/($repo.name)" --headers { - Authorization: $"Bearer ($token)" + let headers = if ($token | is-empty) { + [] + } else { + { + Authorization: $"Bearer ($token)" + } } + let item = http get $"https://api.github.com/repos/($repo.owner)/($repo.name)" --headers $headers + { pushed_at: $item.pushed_at stargazers_count: ($item.stargazers_count | into int) From 2154284eb1e8fac5ebf02fc92a6e99d9f1eb5e43 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20F=2E=20=28BeyondMagic/koetemagie=29?= Date: Mon, 7 Oct 2024 09:51:49 -0300 Subject: [PATCH 04/23] feat(sorting): add gitlab api --- scripts/sort_themes.nu | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/scripts/sort_themes.nu b/scripts/sort_themes.nu index 40227cc..8bb0c9a 100644 --- a/scripts/sort_themes.nu +++ b/scripts/sort_themes.nu @@ -27,6 +27,29 @@ export def github [ } } +# Gitlab API. +export def gitlab [ + token?: string # API Token. +]: record -> record { + let repo = $in + + let headers = if ($token | is-empty) { + [] + } else { + { + Authorization: $"Bearer ($token)" + } + } + + let item = http get $"https://gitlab.com/api/v4/projects/($repo.owner)%2F($repo.name)" --headers $headers + + { + pushed_at: $item.last_activity_at + stargazers_count: ($item.star_count | into int) + avatar: $item.namespace.avatar_url + } +} + # In case of not having API, clone and get information yourself. export def clone [ --temp: string = '/tmp/firefoxcss-store/' # Temporary folder to save themes. @@ -104,6 +127,9 @@ export def main [ let info = if ($item.link | str contains 'github') { sleep $delay $item.link | parse_link | github $token + } else if ($item.link | str contains 'gitlab') { + sleep $delay + $item.link | parse_link | gitlab $token } else { $item.link | parse_link | clone } From 4283f01aad8c21f7cccfd2660d87f818b3cd0725 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20F=2E=20=28BeyondMagic/koetemagie=29?= Date: Mon, 7 Oct 2024 10:16:16 -0300 Subject: [PATCH 05/23] feat(sorting): add codeberg api --- scripts/sort_themes.nu | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/scripts/sort_themes.nu b/scripts/sort_themes.nu index 8bb0c9a..d2c0778 100644 --- a/scripts/sort_themes.nu +++ b/scripts/sort_themes.nu @@ -50,6 +50,29 @@ export def gitlab [ } } +# Codeberg API. +export def codeberg [ + token?: string # API Token. +]: record -> record { + let repo = $in + + let headers = if ($token | is-empty) { + [] + } else { + { + Authorization: $"token ($token)" + } + } + + let item = http get $"https://codeberg.org/api/v1/repos/($repo.owner)/($repo.name)" --headers $headers + + { + pushed_at: $item.updated_at + stargazers_count: ($item.stars_count | into int) + avatar: $item.owner.avatar_url + } +} + # In case of not having API, clone and get information yourself. export def clone [ --temp: string = '/tmp/firefoxcss-store/' # Temporary folder to save themes. @@ -130,6 +153,9 @@ export def main [ } else if ($item.link | str contains 'gitlab') { sleep $delay $item.link | parse_link | gitlab $token + } else if ($item.link | str contains 'codeberg') { + sleep $delay + $item.link | parse_link | codeberg $token } else { $item.link | parse_link | clone } From 995a56177c30e4905a34fc1d940ea3c88da48d6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20F=2E=20=28BeyondMagic/koetemagie=29?= Date: Mon, 7 Oct 2024 10:22:05 -0300 Subject: [PATCH 06/23] feat(themes): add repository field over link because of the theme ficeFox --- scripts/sort_themes.nu | 16 +- themes.json | 2625 +++++++++++++++++++++++++++------------- 2 files changed, 1775 insertions(+), 866 deletions(-) diff --git a/scripts/sort_themes.nu b/scripts/sort_themes.nu index d2c0778..ea7d900 100644 --- a/scripts/sort_themes.nu +++ b/scripts/sort_themes.nu @@ -147,17 +147,19 @@ export def main [ let data = open $source | each {|item| - let info = if ($item.link | str contains 'github') { + let link = $item.repository + + let info = if ($link | str contains 'github') { sleep $delay - $item.link | parse_link | github $token - } else if ($item.link | str contains 'gitlab') { + $link | parse_link | github $token + } else if ($link | str contains 'gitlab') { sleep $delay - $item.link | parse_link | gitlab $token - } else if ($item.link | str contains 'codeberg') { + $link | parse_link | gitlab $token + } else if ($link | str contains 'codeberg') { sleep $delay - $item.link | parse_link | codeberg $token + $link | parse_link | codeberg $token } else { - $item.link | parse_link | clone + $link | parse_link | clone } { diff --git a/themes.json b/themes.json index c5effb8..cc21eaa 100644 --- a/themes.json +++ b/themes.json @@ -1,877 +1,1784 @@ [ - { - "title": "Titlebar-Button-Fix", - "link": "https://github.com/birbkeks/Firefox-Titlebar-Button-Fix", - "description": "This theme fixes titlebar min max close buttons for Firefox in linux. ", - "image": "assets/img/themes/titlebarfix.webp", - "tags": [ "birbkeks", "fix", "titlebar"] - }, - { - "title": "u/FffDtark's Theme", - "link": "https://github.com/Ikrom27/Firefox", - "description": "Oneline theme", - "image": "assets/img/themes/My_Firefox_theme_-_uFffDtark.webp", - "tags": [ "dark", "Ikrom27", "centre", "one-line" ] - }, - { - "title": "Sweet_Pop!", - "link": "https://github.com/PROxZIMA/Sweet-Pop", - "description": "Sweet_Pop! Minimalist oneliner theme for Firefox perfectly matching Sweet Dark.", - "image": "assets/img/themes/sweetpop.webp", - "tags": [ "dark", "light", "modern", "blue", "auto-hide", "floating bar", "PROxZIMA" ] - }, - { - "title": "FirefoxCSS-Plus", - "link": "https://github.com/c2oc/FirefoxCSS-Plus", - "description": "FirefoxCSS+ is based on h4wwk3ye release (https://github.com/h4wwk3ye/firefoxCSS), MaterialFox (https://github.com/muckSponge/MaterialFox) and FlyingFox (https://github.com/akshat46/FlyingFox).", - "image": "assets/img/themes/firefoxcssplus.webp", - "tags": [ "dark", "archived", "c2oc" ] - }, - { - "title": "minimalFOX", - "link": "https://github.com/marmmaz/FirefoxCSS", - "description": "A compact & minimal Firefox theme built for macOS.", - "image": "assets/img/themes/minimalfox.webp", - "tags": [ "dark", "macos", "marmazz", "auto-hide", "floating bar", "compact" ] - }, - { - "title": "FirefoxCss", - "link": "https://github.com/h4wwk3ye/firefoxCSS", - "description": "Custom userChrome.css for firefox based on Material Fox and Flying Fox with few small changes.", - "image": "assets/img/themes/firefoxcss.webp", - "tags": [ "light", "h4wwk3ye", "Tree Style Tab", "sidebar" ] - }, - { - "title": "Simplify Silver Peach for Firefox", - "link": "https://github.com/CristianDragos/FirefoxThemes/tree/master/Simplify%20Silver%20Peach", - "description": "A minimal Firefox Theme for those who would like to properly enjoy my Simplify 10 Silver Peach - Windows 10 Themes\n Compatibility: V89+", - "image": "assets/img/themes/simplify_silver_peach_for_firefox_preview.webp", - "tags": [ "light", "pastel", "CristianDragos", "rounded" ] - }, - { - "title": "Simplify Darkish for Firefox", - "link": "https://github.com/CristianDragos/FirefoxThemes/tree/master/Simplify%20Darkish", - "description": "A minimal Firefox Theme for those who would like to properly enjoy my Simplify 10 Darkish - Windows 10 Themes\n Compatibility: V89+", - "image": "assets/img/themes/simplify_darkish_for_firefox_preview.webp", - "tags": [ "dark", "CristianDragos", "windows 10" ] - }, - { - "title": "SimpleFox", - "link": "https://github.com/migueravila/Simplefox", - "description": "🦊 A Userstyle theme for Firefox minimalist and Keyboard centered.", - "image": "assets/img/themes/simplefox.webp", - "tags": [ "migueravila", "dark", "minimal", "keyboard", "compact", "linux"] - }, - { - "title": "blurredfox", - "link": "https://github.com/manilarome/blurredfox", - "description": "A modern Firefox CSS Theme", - "image": "assets/img/themes/blurred.webp", - "tags": [ "manilarome", "dark", "light", "blur", "linux" ] - }, - { - "title": "Firefox Review", - "link": "https://github.com/fellowish/firefox-review", - "description": "Firefox Review is a CSS redesign of the browser, changing the look of Firefox to match the color scheme and design language of Firefox Preview, the previous name of Mozilla's new mobile app.", - "image": "assets/img/themes/firefoxreview.webp", - "tags": [ "dark", "light", "fellowish", "archived", "colorscheme" ] - }, - { - "title": "nord-firefox", - "link": "https://github.com/daaniiieel/nord-firefox", - "description": "Firefox userChrome.css theme, based on https://github.com/AnubisZ9/Global-Dark-Nordic-theme/.", - "image": "assets/img/themes/nord.webp", - "tags": [ "nord", "daaniiieel", "colorscheme" ] - }, - { - "title": "not-holar's theme", - "link": "https://github.com/not-holar/my_firefox_theme", - "description": "Welcome to the repo for my Firefox theme, a theme that aims to look nice and clean while not compromising functionality.\n Compatibility: V89+", - "image": "assets/img/themes/MyFirefoxThemenotholar.webp", - "tags": [ "not-holar", "stylus", "Tree Style", "dark" ] - }, - { - "title": "Firefox-Mod-Blur", - "link": "https://github.com/datguypiko/Firefox-Mod-Blur", - "description": "Tested 84.0.1 Windows 10 / Default Dark Theme ", - "image": "assets/img/themes/firefoxmodblur.webp", - "tags": [ "blur", "datguypiko", "dark", "centre", "rounded" ] - }, - { - "title": "quietfox", - "link": "https://github.com/coekuss/quietfox", - "description": "This userChrome mod was created to make the Firefox UI cleaner and more modern without sacrificing any of its original features. You can still use themes, and you can still use Compact Mode and Touch Mode. You can pretty much forget that you have a mod installed, it works quietly in the background.", - "image": "assets/img/themes/quietfox.webp", - "tags": [ "coekuss", "toolkit", "simple" ] - }, - { - "title": "minimal-functional-fox", - "link": "https://github.com/mut-ex/minimal-functional-fox", - "description": "A minimal, yet functional configuration for Firefox!", - "image": "assets/img/themes/minimalfuntionalfox.webp", - "tags": [ "centre", "minimal", "dark", "animations" ] - }, - { - "title": "MaterialFox", - "link": "https://github.com/muckSponge/MaterialFox", - "description": "A Material Design-inspired userChrome.css theme for Firefox", - "image": "assets/img/themes/materialfox.webp", - "tags": [ "muckSponge", "dark", "light", "colorscheme" ] - }, - { - "title": "Firefox UWP Style", - "link": "https://github.com/Guerra24/Firefox-UWP-Style", - "description": "A theme that follows UWP styling. Featuring the original MDL2 design and Sun Valley refresh", - "image": "assets/img/themes/firefoxuwpstyle.webp", - "tags": [ "Guerra24", "dark", "colorscheme" ] - }, - { - "title": "Almost Dark Proton", - "link": "https://github.com/Neikon/Almost-Dark-Grey-Colorfull-Proton---FirefoxCSS-Themes", - "description": "Based on Simplify Darkish with few small changes based too in Mod Blur theme. It is intended to be used together with the new firefox elements with the new design called Proton, as the new tab page design. \n Compatibility: V89+", - "image": "assets/img/themes/almostdarkproton.webp", - "tags": [ "centre", "dark", "Neikon", "icon tab bar" ] - }, - { - "title": "Monochrome Tree", - "link": "https://github.com/MatejKafka/FirefoxTheme", - "description": "A custom minimalist theme for Firefox with Tree Style Tab support", - "image": "assets/img/themes/19.webp", - "tags": [ "dark", "light", "MatejKafka", "monochrome", "Tree Style", "one-line" ] - }, - { - "title": "Flying Fox", - "link": "https://github.com/akshat46/FlyingFox", - "description": "An opinionated set of configurations for firefox with Material Fox, github-moonlight userstyle", - "image": "assets/img/themes/flying.webp", - "tags": [ "material", "moonlight", "akshat46" ] - }, - { - "title": "FirefoxW10ContextMenus", - "link": "https://github.com/M1ch431/FirefoxW10ContextMenus", - "description": "Emulates the Windows 10 context menus in Firefox.", - "image": "assets/img/themes/20.webp", - "tags": [ "toolkit", "context", "menu", "windows" ] - }, - { - "title": "EdgeFox", - "link": "https://github.com/23Bluemaster23/EdgeFox", - "description": "Is a userchrome that imitates (or attempts to imitate) the style of Microsoft's Edge Chromiun browser.", - "image": "assets/img/themes/edgefox.webp", - "tags": [ "windows", "edge" ] - }, - { - "title": "Firefox i3wm theme", - "link": "https://github.com/aadilayub/firefox-i3wm-theme", - "description": "A theme for Firefox meant to emulate qutebrowser and integrate with the i3 window manager.", - "image": "assets/img/themes/ff-i3wm.webp", - "tags": [ "qt", "qute", "qutebrowser", "i3" ] - }, - { - "title": "Edge-Frfox", - "link": "https://github.com/bmFtZQ/Edge-FrFox", - "description": "A Firefox userChrome.css theme that aims to recreate the look and feel of Microsoft Edge.", - "image": "assets/img/themes/Edge-Frfox.webp", - "tags": [ "light", "dark", "fluent", "microsoft", "bmFtZQ", "windows", "mac", "linux" ] - }, - { - "title": "NicoFox", - "link": "https://github.com/SlowNicoFish/NicoFox", - "description": "A simple rounded theme", - "image": "assets/img/themes/22381112138598-fe8cd400-8bd1-11eb-8eed-edcca2c689d8.webp", - "tags": [ "rounded", "minimal" ] - }, - { - "title": "Elegant Nord Theme", - "link": "https://github.com/rafamadriz/Firefox-Elegant-NordTheme", - "description": "Elegant Nord Theme with material design", - "image": "assets/img/themes/Elegant-Nord-Theme.webp", - "tags": [ "nord", "material" ] - }, - { - "title": "Moonlight 🌌", - "link": "https://github.com/eduardhojbota/moonlight-userChrome", - "description": "A dark userstyle for Firefox inspired by moonlight-vscode-theme and github-moonlight", - "image": "assets/img/themes/moonlight.webp", - "tags": [ "dark" ] - }, - { - "title": "Firefox Halo", - "link": "https://github.com/seirin-blu/Firefox-Halo", - "description": "A mininmalist Firefox theme with a lot of about: pages edited to act as resources. Updates about every month.", - "image": "assets/img/themes/firefoxhalo.webp", - "tags": [ "toolkit" ] - }, - { - "title": "Pseudo-fullscreen Firefox, Sidebery and YouTube", - "link": "https://github.com/ongots/pseudo-fullscreen-firefox", - "description": "\n Compatibility: V89+", - "image": "assets/img/themes/always-fullscreen-firefox.webp", - "tags": [ "toolkit", "sidebar" ] - }, - { - "title": "WhiteSur Safari style for Firefox", - "link": "https://github.com/adamxweb/WhiteSurFirefoxThemeMacOS", - "description": "Make your Firefox look like Safari. MacOS Big Sur inspired theme for Firefox on MacOS & Windows.\n Compatibility: V89+", - "image": "assets/img/themes/whitesur.webp", - "tags": [ "apple", "mac", "safari" ] - }, - { - "title": "Alpen Blue to Firefox CSS", - "link": "https://github.com/Godiesc/AlpenBlue", - "description": "Theme to Blue and Alpenglow lovers\n Compatibility: V89+", - "image": "assets/img/themes/alpenblue.webp", - "tags": [ "aplenblue", "alpenglow", "Godiesc" ] - }, - { - "title": "duskFox", - "link": "https://github.com/aminomancer/uc.css.js", - "description": "A dark indigo theme integrated with extensive functional and visual scripts.\n Compatibility: V89+", - "image": "assets/img/themes/duskfox.webp", - "tags": [ "dark", "dusk" ] - }, - { - "title": "Compact Mode to Firefox Css", - "link": "https://github.com/Godiesc/compactmodefirefoxcss", - "description": "Theme to Make Firefox Compact and keep it's Beauty\n Compatibility: V89+", - "image": "assets/img/themes/splashcompact.webp", - "tags": [ "toolkit", "Godiesc" ] - }, - { - "title": "DiamondFucsia Theme to Firefox Css", - "link": "https://github.com/Godiesc/DiamondFucsia", - "description": "Dark Theme to Firefox with Fuchsia Colors\n Compatibility: V89+", - "image": "assets/img/themes/diamondfucsia.webp", - "tags": [ "Godiesc" ] - }, - { - "title": "Australis like tabs in Proton UI", - "link": "https://github.com/sagars007/Australis-like-tabs-FF-ProtonUI-changes", - "description": "Changes to make the new proton UI redesign in Firefox better; including changes to tabs, more compact-compact mode, proton gradient accents in elements and much more\n Compatibility: V89+", - "image": "assets/img/themes/custom_australistabs_protonUI.webp", - "tags": [ "compact" ] - }, - { - "title": "Firefox vertical tabs (TST) UI", - "link": "https://github.com/sagars007/Firefox-vertical-tabs-customUI", - "description": "Vertical tabs in Firefox using tree style tabs. Vibrant tab selectors, full dark mode, titlebar text in nav-bar and much more.\n Compatibility: V89+", - "image": "assets/img/themes/compact_verticaltabs_view.webp", - "tags": [ "sidebar", "sidetab", "tree" ] - }, - { - "title": "Lepton(Proton Fix) in Proton UI", - "link": "https://github.com/black7375/Firefox-UI-Fix", - "description": "🦊 I respect proton UI and aim to fix it. Icons, Padding, Tab Design...\n Compatibility: V89+", - "image": "assets/img/themes/Lepton.webp", - "tags": [ "" ] - }, - { - "title": "Lepton's Photon-Styled in Proton UI", - "link": "https://github.com/black7375/Firefox-UI-Fix/tree/photon-style", - "description": "🦊 I tried to preserve Proton’s feeling while preserving Photon’s strengths. Icons, Padding, Tab Design...\n Compatibility: V89+", - "image": "assets/img/themes/Lepton-PhotonStyle.webp", - "tags": [ "" ] - }, - { - "title": "[Firefox 90+] RainFox", - "link": "https://github.com/1280px/rainfox", - "description": "Restores Photon's look and feel but keeps Proton's clarity with some improvements and new features. \n Compatibility: V89+", - "image": "assets/img/themes/rainfox.webp", - "tags": [ "" ] - }, - { - "title": "Gradient rounded tabs redesign and ultra compact mode [Proton UI]", - "link": "https://github.com/sagars007/Proton-UI-connected-rounded-tabs-firefox-css", - "description": "Firefox Proton UI minimal changes with nav-bar-connected rounded tabs, reduced compact mode, nightly color gradient accents etc.. \n Compatibility: V89+", - "image": "assets/img/themes/proton-ui-gradient-rounded-tabs-display.webp", - "tags": [ "" ] - }, - { - "title": "Technetium", - "link": "https://github.com/edo0/Technetium", - "description": "A focused approach to taming the new Firefox Proton interface, restituting some of the beloved elements retired alongside the old Photon UI - menu icons and much more \n Compatibility: V89+", - "image": "assets/img/themes/Technetium.webp", - "tags": [ "edo0", "light", "dark", "rounded", "squared", "compact", "v89" ] - }, - { - "title": "Chameleons-Beauty to Firefox CSS", - "link": "https://github.com/Godiesc/Chameleons-Beauty", - "description": "Adaptive Theme to Firefox Themes \n Compatibility: V89+", - "image": "assets/img/themes/Chameleons-Beauty.webp", - "tags": [ "dark", "Godiesc", "colourful", "dark", "light", "v89" ] - }, - { - "title": "pro-fox: enhanced firefox proton", - "link": "https://github.com/xmansyx/Pro-Fox", - "description": "a proton based theme to make it even better \n Compatibility: V89+", - "image": "assets/img/themes/pro-fox.webp", - "tags": [ "xmansyx", "centered", "rounded", "dark", "light", "bigger", "v89" ] - }, - { - "title": "MartinFox", - "link": "https://github.com/arp242/MartinFox", - "description": "Really simple userChrome.css to make the active tab stand out more; 61 lines. \n Compatibility: V89+", - "image": "assets/img/themes/martinfox.webp", - "tags": [ "arp242", "pure", "compact", "v91" ] - }, - { - "title": "ProtoVibrant", - "link": "https://github.com/bpwned/protovibrant", - "description": "Add macOS vibrancy to the Proton titlebar. Supports dark and light mode. \n Compatibility: V89+", - "image": "assets/img/themes/protovibrant.webp", - "tags": [ "vibrancy", "macos", "pure", "transparency", "bpwned", "v89" ] - }, - { - "title": "OnelineProton", - "link": "https://github.com/lr-tech/OnelineProton", - "description": "An oneline userChrome.css theme for Firefox, which aims to keep the Proton experience \n Compatibility: V89+", - "image": "assets/img/themes/onelineproton.webp", - "tags": [ "one-line", "proton", "v89", "minimal", "dark", "light", "lr-tech", "v89" ] - }, - { - "title": "Firefox Compact Mode", - "link": "https://github.com/dannycolin/fx-compact-mode", - "description": "A compact mode that follows Firefox 89 (known as Proton) design system while using the same vertical space as the compact mode in Firefox 88 (known as Photon). \n Compatibility: V91+", - "image": "assets/img/themes/fx-compact-mode.webp", - "tags": [ "dannycolin", "compact", "proton", "photon", "v91", "pure" ] - }, - { - "title": "GruvFox by Alfarex2019", - "link": "https://github.com/FirefoxCSSThemers/GruvFox", - "description": "GruvFox is a remix of dpcdpc11's theme, featuring the gruvbox color palette.\n Compatibility: V91+", - "image": "assets/img/themes/20930130265614-a7559ea7-70fd-44f9-a790-34c5c0e31493.webp", - "tags": [ "alfarexguy2019", "gruv", "dark", "pure", "v91" ] - }, - { - "title": "Proton Square", - "link": "https://github.com/leadweedy/Firefox-Proton-Square", - "description": "Recreates the feel of Quantum with its squared tabs and menus. No rounded corners to be seen.\n Compatibility: V91+", - "image": "assets/img/themes//24535ff_protonbutquantum.webp", - "tags": [ "squared", "v91", "pure", "quantum", "leadweedy" ] - }, - { - "title": "Natura for Firefox", - "link": "https://github.com/firefoxcssthemers/natura-for-firefox", - "description": "Nature theme for Firefox \n Compatibility: V91+", - "image": "assets/img/themes/natura.webp", - "tags": [ "green", "yellow", "firefoxcssthemers", "alfarexguy2019", "v91", "pure" ] - }, - { - "title": "MacOSVibrant", - "link": "https://github.com/Tnings/MacosVibrant", - "description": "A theme that uses MacOS Vibrancy and is styled after other Apple Apps \n Compatibility: V91+", - "image": "assets/img/themes/MacOSVibrant.webp", - "tags": [ "Tnings", "transparency", "dark", "rounded", "v91" ] - }, - { - "title": "Cascade", - "link": "https://github.com/andreasgrafen/cascade", - "description": "A responsive \"One-Line\" theme based on SimpleFox for the new ProtonUI. \n Compatibility: V91+", - "image": "assets/img/themes/cascade.webp", - "tags": [ "andreasgrafen", "minial", "oneline", "responsive", "one-line", "proton", "light", "dark", "v91" ] - }, - { - "title": "Firefox GNOME theme", - "link": "https://github.com/rafaelmardojai/firefox-gnome-theme", - "description": "A bunch of CSS code to make Firefox look closer to GNOME's native apps. \n Compatibility: V91+", - "image": "assets/img/themes/firefox-gnome-theme.webp", - "tags": [ "rafaelmardojai", "gnome", "v91", "rounded", "light", "dark", "v91" ] - }, - { - "title": "PretoFox", - "link": "https://github.com/alfarexguy2019/pretofox", - "description": "A Black n White AMOLED theme for Firefox, inspired by the Preto color scheme. \n Compatibility: V91+", - "image": "assets/img/themes/PretoFox.webp", - "tags": [ "alfarexguy2019", "black", "white", "dark", "light", "v91" ] - }, - { - "title": "Elementary OS Odin Firefox theme", - "link": "https://github.com/Zonnev/elementaryos-firefox-theme", - "description": "This theme supports all the window buttons layouts from Tweaks and it blends into the elementary OS Odin user interface. \n Compatibility: V91+", - "image": "assets/img/themes/firefox-eos6-theme.webp", - "tags": [ "Zonnev", "elementary-OS", "OS", "dark", "light" ] - }, - { - "title": "Oneliner Deluxe", - "link": "https://github.com/Doosty/Oneliner-Deluxe", - "description": "Minimal, customizable and theme compatible \n Compatibility: V91+", - "image": "assets/img/themes/Oneliner_Deluxe.webp", - "tags": [ "one-line", "Doosty", "v91" ] - }, - { - "title": "Simple Oneliner", - "link": "https://github.com/hakan-demirli/Firefox_Custom_CSS", - "description": "A simple theme to maximize the vertical space of your monitor \n Compatibility: V91+", - "image": "assets/img/themes/Simple_Oneliner.webp", - "tags": [ "Sidebery", "dark", "light", "pdf", "one-line", "hakan-demirli", "v91" ] - }, - { - "title": "GentleFox", - "link": "https://github.com/alfarexguy2019/gentlefox", - "description": "A Firefox theme, which features gentle curves, transparency and a minimal interface. \n Compatibility: V91+", - "image": "assets/img/themes/GentleFox.webp", - "tags": [ "alfarexguy2019", "blur", "transparency", "rounded", "dark", "light" ] - }, - { - "title": "Clean and Transparent", - "link": "https://github.com/Filip-Sutkowy/blurclean-firefox-theme", - "description": "Clean theme with as much transparency as Firefox lets you do \n Compatibility: V91+", - "image": "assets/img/themes/Clean_and_Transparent.webp", - "tags": [ "Filip-Sutkowy", "blur", "pure", "dark", "light", "transparency", "v91" ] - }, - { - "title": "Waterfall", - "link": "https://github.com/crambaud/waterfall", - "description": "A minimalist one line theme", - "image": "assets/img/themes/waterfall.webp", - "tags": [ "crambaud", "minimal", "one-line", "mouse" ] - }, - { - "title": "Brave-Fox: The Reimagined Browser, Reimagined", - "link": "https://github.com/Soft-Bred/Brave-Fox", - "description": "Brave-Fox is a Firefox Theme that brings Brave's design elements into Firefox.", - "image": "assets/img/themes//184007ilia7199au71.webp", - "tags": [ "brave", "pure", "js", "javascript", "Soft-Bred" ] - }, - { - "title": "KeyFox- A minimal, keyboard centered OneLiner CSS.", - "link": "https://github.com/alfarexguy2019/KeyFox", - "description": "KeyFox is A simple, minimal OneLiner Keyboard-centered CSS for Firefox.", - "image": "assets/img/themes//13268136501706-accca691-b9c3-4841-acd7-6bb843d2f422.webp", - "tags": [ "black", "dark", "white", "one-line", "alfarexguy2019" ] - }, - { - "title": "CompactFox", - "link": "https://github.com/Tnings/CompactFox", - "description": "A simple theme that compacts a lot of the UI elements", - "image": "assets/img/themes/CompactFoxPreview.webp", - "tags": [ "compact", "dark", "light", "Tnings", "pure" ] - }, - { - "title": "AuroraFox- Auroral Firefox", - "link": "https://github.com/alfarexguy2019/aurora-fox", - "description": "AuroraFox is a clean rounded Firefox theme, made using CSS, to match with the trendy 'Aurora' Colour Palette.", - "image": "assets/img/themes//18328141609919-befbc7f3-5199-4672-9ba1-8551d2a4e5a1.webp", - "tags": [ "dark", "minimal", "purple", "alfarexguy2019" ] - }, - { - "title": "starry-fox", - "link": "https://github.com/sagars007/starry-fox", - "description": "Firefox CSS stylesheets for the Dark Space Theme. Matching more UI elements with the theme.", - "image": "assets/img/themes/starry-fox-resize.webp", - "tags": [ "sagars007", "dark", "compact", "darkspace", "stars", "nightsky", "gradient", "windows11" ] - }, - { - "title": "Firefox-GX", - "link": "https://github.com/Godiesc/firefox-gx", - "description": "Firefox Theme to Opera-GX skin Lovers.", - "image": "assets/img/themes/firefox-gx.webp", - "tags": [ "Godiesc", "dark", "opera", "gx", "theme", "adapted", "light", "fuchsia" ] - }, - { - "title": "Elegant Fox", - "link": "https://github.com/ayushhroyy/elegantfox", - "description": "A firefox context menu theme and background wallpaper support with linux desktops being the main focus", - "image": "assets/img/themes/elegantfox.webp ", - "tags": [ "ayushhroyy", "nord", "dark", "light", "adaptive" ] - }, - { - "title": "TYH Fox", - "link": "https://github.com/tyuhao/TYHfox", - "description": "A firefox Theme CSS", - "image": "assets/img/themes/TYHFox.webp ", - "tags": ["TYHFox", "dark", "light", "adaptive" ] - }, - { - "title": "AutoColor-Minimal-Proton", - "link": "https://github.com/Neikon/AutoColor-Minimal-Proton", - "description": "Some settings that together with the vivaldifox add-on create a minimalist theme whose color is the color of the website you are visiting.", - "image": "assets/img/themes/AutoColor-Minimal-Proton.webp", - "tags": [ "vivaldi", "proton", "minimal", "autocolor", "dark", "light", "borderless", "adaptive", "compact", "one-line", "neikon"] - }, - { - "title": "SimpleFox Feather Edition", - "link": "https://github.com/BlueFalconHD/SimpleFox-Feather/", - "description": "A fork of SimpleFox that uses feather icons!", - "image": "assets/img/themes/simplefox-feather.webp", - "tags": ["Simplefox", "Fork", "Icons", "BlueFalconHD"] - }, - { - "title": "gale for Firefox", - "link": "https://github.com/mgastonportillo/gale-for-ff", - "description": "My CSS files to use with Firefox and Sidebery", - "image": "assets/img/themes//8988rjy7uTd.webp", - "tags": [ "gale", "dark", "minimalistic", "adaptive", "compact", "autohide", "sidebar"] - }, - { - "title": "Firefox-UWP-Style-Theme-Omars-Edit", - "link": "https://github.com/omarb737/Firefox-UWP-Style-Theme-Omars-Edit", - "description": "A minimalistic-retro theme based off the UWP interface", - "image": "assets/img/themes//321608U0N6E.webp", - "tags": [ "omarb737", "dark", "retro", "minimalist", "UWP" ] - }, - { - "title": "Modoki Firefox", - "link": "https://github.com/soup-bowl/Modoki-Firefox", - "description": "Bringing the classic Modern Modoki Netscape theme back", - "image": "assets/img/themes/soupbowlmodoki.webp", - "tags": [ "soup-bowl", "classic", "netscape", "skeuomorphic", "light", "retro" ] - }, - { - "title": "TileFox", - "link": "https://github.com/davquar/tilefox", - "description": "A minimalistic Firefox userChrome.css that integrates well with tiling window managers like i3", - "image": "assets/img/themes/tilefox.webp", - "tags": [ "davquar", "light", "dark", "tile", "tilefox", "minimal", "minimalistic", "brutalist", "compact", "tiling", "dwm", "sway", "i3", "keyboard", "linux"] - }, - { - "title": "AestheticFox", - "link": "https://github.com/AidanMercer/AestheticFox", - "description": "A minamist and aesthetic userstyle theme for Firefox", - "image": "assets/img/themes/AestheticFox.webp", - "tags": [ "clean", "compact", "aestheticfox", "minimal", "minimalistic", "aesthetic"] - }, - { - "title": "Firefox 'Safari 15' Theme", - "link": "https://github.com/denizjcan/Firefox-Safari-15-Theme", - "description": "A Firefox theme that emulates the Safari 15 interface and new tab page.", - "image": "assets/img/themes//25940safari2.webp", - "tags": [ "clean", "compact", "oneline", "safari", "ventura", "aesthetic", "mac", "modern", "compact", "dark", "denizjcan", "safari" ] - }, - { - "title": "Firefox Onebar", - "link": "https://git.gay/freeplay/Firefox-Onebar", - "description": "A single bar for Firefox's UI.", - "image": "assets/img/themes/onebar.webp", - "tags": [ "Freeplay", "oneline", "onebar", "compact", "minimal"] - }, - { - "title": "Dracula", - "link": "https://github.com/jannikbuscha/firefox-dracula", - "description": "A Firefox CSS Theme that aims to recreate the look and feel of the Chromium version of Microsoft Edge in the style of Dracula.", - "image": "assets/img/themes/dracula.webp", - "tags": [ "edge", "dark", "microsoft", "dracula" ] - }, - { - "title": "rounded-fox", - "link": "https://github.com/Etesam913/rounded-fox", - "description": "A minimalist theme that uses animation to hide visual clutter.", - "image": "assets/img/themes/rounded_fox.webp", - "tags": ["clean", "compact", "minimalist", "dark", "light", "animation"] - }, - { - "title": "Three Rows Simple Compact Clean CSS", - "link": "https://github.com/hornster02/Firefox-Three-Rows-Simple-Compact-Clean-CSS", - "description": "A compact theme based on use multiple rows", - "image": "assets/img/themes/Three_Rows.webp", - "tags": ["simple", "compact", "minimalist","rows"] - }, - { - "title": "Bali10050's theme", - "link": "https://github.com/Bali10050/FirefoxCSS", - "description": "A minimal looking oneliner, with modular code for easy editing", - "image": "assets/img/themes/Bali10050sPreview.webp", - "tags": [ "Bali10050", "oneline", "light", "dark", "linux", "windows", "rounded", "proton", "responsive", "minimalistic" ] - }, - { - "title": "ViceFox", - "link": "https://vicefox.vercel.app", - "description": "Don't ask why it's called 'ViceFox'", - "image": "assets/img/themes/ViceFox.webp", - "tags": [ "clean", "compact", "safari", "minimal", "macos"] - }, - { - "title": "DarkMatter", - "link": "https://github.com/BloodyHell619/Firefox-Theme-DarkMatter", - "description": "An intensively worked on, and highly customized dark theme made for Firefox Proton, stretching darkness into every corner of the browser and perfecting even the tiniest details ", - "image": "assets/img/themes/darkmatter.webp", - "tags": [ "dark", "Vertical", "squared", "proton"] - }, - { - "title": "Fox11", - "link": "https://github.com/Neikon/Fox11", - "description": "A Firefox CSS themes with auto-color, Mica, auto-hide nav-bar support. Inspired in firefox-one , Edge/Chrome restyle 2023.", - "image": "assets/img/themes/fox11.webp", - "tags": [ "vivaldi", "proton", "minimal", "autocolor", "dark", "light", "mica", "adaptive", "transparency", "neikon", "one-line"] - }, - { - "title": "zap's cool photon theme", - "link": "https://github.com/zapSNH/zapsCoolPhotonTheme", - "description": "Party like it's Firefox 57-88!", - "image": "assets/img/themes/zaps-photon.webp", - "tags": [ "photon", "compact", "squared", "quantum" ] - }, - { - "title": "Firefox-ONE", - "link": "https://github.com/Godiesc/firefox-one", - "description": "Dress Firefox with the Opera One skin", - "image": "assets/img/themes/firefox-one.webp", - "tags": ["Godiesc", "opera", "one", "opera-one", "firefox", "firefox-one", "theme", "adaptive", "tree", "tabs"] - }, - { - "title": "Essence", - "link": "https://github.com/JarnotMaciej/Essence", - "description": "Compact, beautiful and minimalistic theme for the Firefox web browser.", - "image": "assets/img/themes/essence.webp", - "tags": [ "compact", "minimal", "light", "modern", "oneline", "rounded", "clean" ] - }, - { - "title": "minimal-one-line-firefox", - "link": "https://github.com/ttntm/minimal-one-line-firefox", - "description": "A minimal oneliner, to minimizing the space used for url and tab bar", - "image": "assets/img/themes/molff.webp", - "tags": ["oneline", "light", "dark", "squared", "compact", "minimalistic"] - }, - { - "title": "RealFire", - "link": "https://github.com/Hakanbaban53/RealFire", - "description": "A minimalist animated oneliner theme for Firefox perfectly matching Real Dark", - "image": "assets/img/themes/RealFire-main.webp", - "tags": ["oneline", "responsive", "light", "dark", "animation", "rounded", "compact", "minimalistic", "black"] - }, - { + { + "title": "Titlebar-Button-Fix", + "link": "https://github.com/birbkeks/Firefox-Titlebar-Button-Fix", + "description": "This theme fixes titlebar min max close buttons for Firefox in linux. ", + "image": "assets/img/themes/titlebarfix.webp", + "tags": [ + "birbkeks", + "fix", + "titlebar" + ], + "repository": "https://github.com/birbkeks/Firefox-Titlebar-Button-Fix" + }, + { + "title": "u/FffDtark's Theme", + "link": "https://github.com/Ikrom27/Firefox", + "description": "Oneline theme", + "image": "assets/img/themes/My_Firefox_theme_-_uFffDtark.webp", + "tags": [ + "dark", + "Ikrom27", + "centre", + "one-line" + ], + "repository": "https://github.com/Ikrom27/Firefox" + }, + { + "title": "Sweet_Pop!", + "link": "https://github.com/PROxZIMA/Sweet-Pop", + "description": "Sweet_Pop! Minimalist oneliner theme for Firefox perfectly matching Sweet Dark.", + "image": "assets/img/themes/sweetpop.webp", + "tags": [ + "dark", + "light", + "modern", + "blue", + "auto-hide", + "floating bar", + "PROxZIMA" + ], + "repository": "https://github.com/PROxZIMA/Sweet-Pop" + }, + { + "title": "FirefoxCSS-Plus", + "link": "https://github.com/c2oc/FirefoxCSS-Plus", + "description": "FirefoxCSS+ is based on h4wwk3ye release (https://github.com/h4wwk3ye/firefoxCSS), MaterialFox (https://github.com/muckSponge/MaterialFox) and FlyingFox (https://github.com/akshat46/FlyingFox).", + "image": "assets/img/themes/firefoxcssplus.webp", + "tags": [ + "dark", + "archived", + "c2oc" + ], + "repository": "https://github.com/c2oc/FirefoxCSS-Plus" + }, + { + "title": "minimalFOX", + "link": "https://github.com/marmmaz/FirefoxCSS", + "description": "A compact & minimal Firefox theme built for macOS.", + "image": "assets/img/themes/minimalfox.webp", + "tags": [ + "dark", + "macos", + "marmazz", + "auto-hide", + "floating bar", + "compact" + ], + "repository": "https://github.com/marmmaz/FirefoxCSS" + }, + { + "title": "FirefoxCss", + "link": "https://github.com/h4wwk3ye/firefoxCSS", + "description": "Custom userChrome.css for firefox based on Material Fox and Flying Fox with few small changes.", + "image": "assets/img/themes/firefoxcss.webp", + "tags": [ + "light", + "h4wwk3ye", + "Tree Style Tab", + "sidebar" + ], + "repository": "https://github.com/h4wwk3ye/firefoxCSS" + }, + { + "title": "Simplify Silver Peach for Firefox", + "link": "https://github.com/CristianDragos/FirefoxThemes/tree/master/Simplify%20Silver%20Peach", + "description": "A minimal Firefox Theme for those who would like to properly enjoy my Simplify 10 Silver Peach - Windows 10 Themes\n Compatibility: V89+", + "image": "assets/img/themes/simplify_silver_peach_for_firefox_preview.webp", + "tags": [ + "light", + "pastel", + "CristianDragos", + "rounded" + ], + "repository": "https://github.com/CristianDragos/FirefoxThemes/tree/master/Simplify%20Silver%20Peach" + }, + { + "title": "Simplify Darkish for Firefox", + "link": "https://github.com/CristianDragos/FirefoxThemes/tree/master/Simplify%20Darkish", + "description": "A minimal Firefox Theme for those who would like to properly enjoy my Simplify 10 Darkish - Windows 10 Themes\n Compatibility: V89+", + "image": "assets/img/themes/simplify_darkish_for_firefox_preview.webp", + "tags": [ + "dark", + "CristianDragos", + "windows 10" + ], + "repository": "https://github.com/CristianDragos/FirefoxThemes/tree/master/Simplify%20Darkish" + }, + { + "title": "SimpleFox", + "link": "https://github.com/migueravila/Simplefox", + "description": "🦊 A Userstyle theme for Firefox minimalist and Keyboard centered.", + "image": "assets/img/themes/simplefox.webp", + "tags": [ + "migueravila", + "dark", + "minimal", + "keyboard", + "compact", + "linux" + ], + "repository": "https://github.com/migueravila/Simplefox" + }, + { + "title": "blurredfox", + "link": "https://github.com/manilarome/blurredfox", + "description": "A modern Firefox CSS Theme", + "image": "assets/img/themes/blurred.webp", + "tags": [ + "manilarome", + "dark", + "light", + "blur", + "linux" + ], + "repository": "https://github.com/manilarome/blurredfox" + }, + { + "title": "Firefox Review", + "link": "https://github.com/fellowish/firefox-review", + "description": "Firefox Review is a CSS redesign of the browser, changing the look of Firefox to match the color scheme and design language of Firefox Preview, the previous name of Mozilla's new mobile app.", + "image": "assets/img/themes/firefoxreview.webp", + "tags": [ + "dark", + "light", + "fellowish", + "archived", + "colorscheme" + ], + "repository": "https://github.com/fellowish/firefox-review" + }, + { + "title": "nord-firefox", + "link": "https://github.com/daaniiieel/nord-firefox", + "description": "Firefox userChrome.css theme, based on https://github.com/AnubisZ9/Global-Dark-Nordic-theme/.", + "image": "assets/img/themes/nord.webp", + "tags": [ + "nord", + "daaniiieel", + "colorscheme" + ], + "repository": "https://github.com/daaniiieel/nord-firefox" + }, + { + "title": "not-holar's theme", + "link": "https://github.com/not-holar/my_firefox_theme", + "description": "Welcome to the repo for my Firefox theme, a theme that aims to look nice and clean while not compromising functionality.\n Compatibility: V89+", + "image": "assets/img/themes/MyFirefoxThemenotholar.webp", + "tags": [ + "not-holar", + "stylus", + "Tree Style", + "dark" + ], + "repository": "https://github.com/not-holar/my_firefox_theme" + }, + { + "title": "Firefox-Mod-Blur", + "link": "https://github.com/datguypiko/Firefox-Mod-Blur", + "description": "Tested 84.0.1 Windows 10 / Default Dark Theme ", + "image": "assets/img/themes/firefoxmodblur.webp", + "tags": [ + "blur", + "datguypiko", + "dark", + "centre", + "rounded" + ], + "repository": "https://github.com/datguypiko/Firefox-Mod-Blur" + }, + { + "title": "quietfox", + "link": "https://github.com/coekuss/quietfox", + "description": "This userChrome mod was created to make the Firefox UI cleaner and more modern without sacrificing any of its original features. You can still use themes, and you can still use Compact Mode and Touch Mode. You can pretty much forget that you have a mod installed, it works quietly in the background.", + "image": "assets/img/themes/quietfox.webp", + "tags": [ + "coekuss", + "toolkit", + "simple" + ], + "repository": "https://github.com/coekuss/quietfox" + }, + { + "title": "minimal-functional-fox", + "link": "https://github.com/mut-ex/minimal-functional-fox", + "description": "A minimal, yet functional configuration for Firefox!", + "image": "assets/img/themes/minimalfuntionalfox.webp", + "tags": [ + "centre", + "minimal", + "dark", + "animations" + ], + "repository": "https://github.com/mut-ex/minimal-functional-fox" + }, + { + "title": "MaterialFox", + "link": "https://github.com/muckSponge/MaterialFox", + "description": "A Material Design-inspired userChrome.css theme for Firefox", + "image": "assets/img/themes/materialfox.webp", + "tags": [ + "muckSponge", + "dark", + "light", + "colorscheme" + ], + "repository": "https://github.com/muckSponge/MaterialFox" + }, + { + "title": "Firefox UWP Style", + "link": "https://github.com/Guerra24/Firefox-UWP-Style", + "description": "A theme that follows UWP styling. Featuring the original MDL2 design and Sun Valley refresh", + "image": "assets/img/themes/firefoxuwpstyle.webp", + "tags": [ + "Guerra24", + "dark", + "colorscheme" + ], + "repository": "https://github.com/Guerra24/Firefox-UWP-Style" + }, + { + "title": "Almost Dark Proton", + "link": "https://github.com/Neikon/Almost-Dark-Grey-Colorfull-Proton---FirefoxCSS-Themes", + "description": "Based on Simplify Darkish with few small changes based too in Mod Blur theme. It is intended to be used together with the new firefox elements with the new design called Proton, as the new tab page design. \n Compatibility: V89+", + "image": "assets/img/themes/almostdarkproton.webp", + "tags": [ + "centre", + "dark", + "Neikon", + "icon tab bar" + ], + "repository": "https://github.com/Neikon/Almost-Dark-Grey-Colorfull-Proton---FirefoxCSS-Themes" + }, + { + "title": "Monochrome Tree", + "link": "https://github.com/MatejKafka/FirefoxTheme", + "description": "A custom minimalist theme for Firefox with Tree Style Tab support", + "image": "assets/img/themes/19.webp", + "tags": [ + "dark", + "light", + "MatejKafka", + "monochrome", + "Tree Style", + "one-line" + ], + "repository": "https://github.com/MatejKafka/FirefoxTheme" + }, + { + "title": "Flying Fox", + "link": "https://github.com/akshat46/FlyingFox", + "description": "An opinionated set of configurations for firefox with Material Fox, github-moonlight userstyle", + "image": "assets/img/themes/flying.webp", + "tags": [ + "material", + "moonlight", + "akshat46" + ], + "repository": "https://github.com/akshat46/FlyingFox" + }, + { + "title": "FirefoxW10ContextMenus", + "link": "https://github.com/M1ch431/FirefoxW10ContextMenus", + "description": "Emulates the Windows 10 context menus in Firefox.", + "image": "assets/img/themes/20.webp", + "tags": [ + "toolkit", + "context", + "menu", + "windows" + ], + "repository": "https://github.com/M1ch431/FirefoxW10ContextMenus" + }, + { + "title": "EdgeFox", + "link": "https://github.com/23Bluemaster23/EdgeFox", + "description": "Is a userchrome that imitates (or attempts to imitate) the style of Microsoft's Edge Chromiun browser.", + "image": "assets/img/themes/edgefox.webp", + "tags": [ + "windows", + "edge" + ], + "repository": "https://github.com/23Bluemaster23/EdgeFox" + }, + { + "title": "Firefox i3wm theme", + "link": "https://github.com/aadilayub/firefox-i3wm-theme", + "description": "A theme for Firefox meant to emulate qutebrowser and integrate with the i3 window manager.", + "image": "assets/img/themes/ff-i3wm.webp", + "tags": [ + "qt", + "qute", + "qutebrowser", + "i3" + ], + "repository": "https://github.com/aadilayub/firefox-i3wm-theme" + }, + { + "title": "Edge-Frfox", + "link": "https://github.com/bmFtZQ/Edge-FrFox", + "description": "A Firefox userChrome.css theme that aims to recreate the look and feel of Microsoft Edge.", + "image": "assets/img/themes/Edge-Frfox.webp", + "tags": [ + "light", + "dark", + "fluent", + "microsoft", + "bmFtZQ", + "windows", + "mac", + "linux" + ], + "repository": "https://github.com/bmFtZQ/Edge-FrFox" + }, + { + "title": "NicoFox", + "link": "https://github.com/SlowNicoFish/NicoFox", + "description": "A simple rounded theme", + "image": "assets/img/themes/22381112138598-fe8cd400-8bd1-11eb-8eed-edcca2c689d8.webp", + "tags": [ + "rounded", + "minimal" + ], + "repository": "https://github.com/SlowNicoFish/NicoFox" + }, + { + "title": "Elegant Nord Theme", + "link": "https://github.com/rafamadriz/Firefox-Elegant-NordTheme", + "description": "Elegant Nord Theme with material design", + "image": "assets/img/themes/Elegant-Nord-Theme.webp", + "tags": [ + "nord", + "material" + ], + "repository": "https://github.com/rafamadriz/Firefox-Elegant-NordTheme" + }, + { + "title": "Moonlight 🌌", + "link": "https://github.com/eduardhojbota/moonlight-userChrome", + "description": "A dark userstyle for Firefox inspired by moonlight-vscode-theme and github-moonlight", + "image": "assets/img/themes/moonlight.webp", + "tags": [ + "dark" + ], + "repository": "https://github.com/eduardhojbota/moonlight-userChrome" + }, + { + "title": "Firefox Halo", + "link": "https://github.com/seirin-blu/Firefox-Halo", + "description": "A mininmalist Firefox theme with a lot of about: pages edited to act as resources. Updates about every month.", + "image": "assets/img/themes/firefoxhalo.webp", + "tags": [ + "toolkit" + ], + "repository": "https://github.com/seirin-blu/Firefox-Halo" + }, + { + "title": "Pseudo-fullscreen Firefox, Sidebery and YouTube", + "link": "https://github.com/ongots/pseudo-fullscreen-firefox", + "description": "\n Compatibility: V89+", + "image": "assets/img/themes/always-fullscreen-firefox.webp", + "tags": [ + "toolkit", + "sidebar" + ], + "repository": "https://github.com/ongots/pseudo-fullscreen-firefox" + }, + { + "title": "WhiteSur Safari style for Firefox", + "link": "https://github.com/adamxweb/WhiteSurFirefoxThemeMacOS", + "description": "Make your Firefox look like Safari. MacOS Big Sur inspired theme for Firefox on MacOS & Windows.\n Compatibility: V89+", + "image": "assets/img/themes/whitesur.webp", + "tags": [ + "apple", + "mac", + "safari" + ], + "repository": "https://github.com/adamxweb/WhiteSurFirefoxThemeMacOS" + }, + { + "title": "Alpen Blue to Firefox CSS", + "link": "https://github.com/Godiesc/AlpenBlue", + "description": "Theme to Blue and Alpenglow lovers\n Compatibility: V89+", + "image": "assets/img/themes/alpenblue.webp", + "tags": [ + "aplenblue", + "alpenglow", + "Godiesc" + ], + "repository": "https://github.com/Godiesc/AlpenBlue" + }, + { + "title": "duskFox", + "link": "https://github.com/aminomancer/uc.css.js", + "description": "A dark indigo theme integrated with extensive functional and visual scripts.\n Compatibility: V89+", + "image": "assets/img/themes/duskfox.webp", + "tags": [ + "dark", + "dusk" + ], + "repository": "https://github.com/aminomancer/uc.css.js" + }, + { + "title": "Compact Mode to Firefox Css", + "link": "https://github.com/Godiesc/compactmodefirefoxcss", + "description": "Theme to Make Firefox Compact and keep it's Beauty\n Compatibility: V89+", + "image": "assets/img/themes/splashcompact.webp", + "tags": [ + "toolkit", + "Godiesc" + ], + "repository": "https://github.com/Godiesc/compactmodefirefoxcss" + }, + { + "title": "DiamondFucsia Theme to Firefox Css", + "link": "https://github.com/Godiesc/DiamondFucsia", + "description": "Dark Theme to Firefox with Fuchsia Colors\n Compatibility: V89+", + "image": "assets/img/themes/diamondfucsia.webp", + "tags": [ + "Godiesc" + ], + "repository": "https://github.com/Godiesc/DiamondFucsia" + }, + { + "title": "Australis like tabs in Proton UI", + "link": "https://github.com/sagars007/Australis-like-tabs-FF-ProtonUI-changes", + "description": "Changes to make the new proton UI redesign in Firefox better; including changes to tabs, more compact-compact mode, proton gradient accents in elements and much more\n Compatibility: V89+", + "image": "assets/img/themes/custom_australistabs_protonUI.webp", + "tags": [ + "compact" + ], + "repository": "https://github.com/sagars007/Australis-like-tabs-FF-ProtonUI-changes" + }, + { + "title": "Firefox vertical tabs (TST) UI", + "link": "https://github.com/sagars007/Firefox-vertical-tabs-customUI", + "description": "Vertical tabs in Firefox using tree style tabs. Vibrant tab selectors, full dark mode, titlebar text in nav-bar and much more.\n Compatibility: V89+", + "image": "assets/img/themes/compact_verticaltabs_view.webp", + "tags": [ + "sidebar", + "sidetab", + "tree" + ], + "repository": "https://github.com/sagars007/Firefox-vertical-tabs-customUI" + }, + { + "title": "Lepton(Proton Fix) in Proton UI", + "link": "https://github.com/black7375/Firefox-UI-Fix", + "description": "🦊 I respect proton UI and aim to fix it. Icons, Padding, Tab Design...\n Compatibility: V89+", + "image": "assets/img/themes/Lepton.webp", + "tags": [ + "" + ], + "repository": "https://github.com/black7375/Firefox-UI-Fix" + }, + { + "title": "Lepton's Photon-Styled in Proton UI", + "link": "https://github.com/black7375/Firefox-UI-Fix/tree/photon-style", + "description": "🦊 I tried to preserve Proton’s feeling while preserving Photon’s strengths. Icons, Padding, Tab Design...\n Compatibility: V89+", + "image": "assets/img/themes/Lepton-PhotonStyle.webp", + "tags": [ + "" + ], + "repository": "https://github.com/black7375/Firefox-UI-Fix/tree/photon-style" + }, + { + "title": "[Firefox 90+] RainFox", + "link": "https://github.com/1280px/rainfox", + "description": "Restores Photon's look and feel but keeps Proton's clarity with some improvements and new features. \n Compatibility: V89+", + "image": "assets/img/themes/rainfox.webp", + "tags": [ + "" + ], + "repository": "https://github.com/1280px/rainfox" + }, + { + "title": "Gradient rounded tabs redesign and ultra compact mode [Proton UI]", + "link": "https://github.com/sagars007/Proton-UI-connected-rounded-tabs-firefox-css", + "description": "Firefox Proton UI minimal changes with nav-bar-connected rounded tabs, reduced compact mode, nightly color gradient accents etc.. \n Compatibility: V89+", + "image": "assets/img/themes/proton-ui-gradient-rounded-tabs-display.webp", + "tags": [ + "" + ], + "repository": "https://github.com/sagars007/Proton-UI-connected-rounded-tabs-firefox-css" + }, + { + "title": "Technetium", + "link": "https://github.com/edo0/Technetium", + "description": "A focused approach to taming the new Firefox Proton interface, restituting some of the beloved elements retired alongside the old Photon UI - menu icons and much more \n Compatibility: V89+", + "image": "assets/img/themes/Technetium.webp", + "tags": [ + "edo0", + "light", + "dark", + "rounded", + "squared", + "compact", + "v89" + ], + "repository": "https://github.com/edo0/Technetium" + }, + { + "title": "Chameleons-Beauty to Firefox CSS", + "link": "https://github.com/Godiesc/Chameleons-Beauty", + "description": "Adaptive Theme to Firefox Themes \n Compatibility: V89+", + "image": "assets/img/themes/Chameleons-Beauty.webp", + "tags": [ + "dark", + "Godiesc", + "colourful", + "dark", + "light", + "v89" + ], + "repository": "https://github.com/Godiesc/Chameleons-Beauty" + }, + { + "title": "pro-fox: enhanced firefox proton", + "link": "https://github.com/xmansyx/Pro-Fox", + "description": "a proton based theme to make it even better \n Compatibility: V89+", + "image": "assets/img/themes/pro-fox.webp", + "tags": [ + "xmansyx", + "centered", + "rounded", + "dark", + "light", + "bigger", + "v89" + ], + "repository": "https://github.com/xmansyx/Pro-Fox" + }, + { + "title": "MartinFox", + "link": "https://github.com/arp242/MartinFox", + "description": "Really simple userChrome.css to make the active tab stand out more; 61 lines. \n Compatibility: V89+", + "image": "assets/img/themes/martinfox.webp", + "tags": [ + "arp242", + "pure", + "compact", + "v91" + ], + "repository": "https://github.com/arp242/MartinFox" + }, + { + "title": "ProtoVibrant", + "link": "https://github.com/bpwned/protovibrant", + "description": "Add macOS vibrancy to the Proton titlebar. Supports dark and light mode. \n Compatibility: V89+", + "image": "assets/img/themes/protovibrant.webp", + "tags": [ + "vibrancy", + "macos", + "pure", + "transparency", + "bpwned", + "v89" + ], + "repository": "https://github.com/bpwned/protovibrant" + }, + { + "title": "OnelineProton", + "link": "https://github.com/lr-tech/OnelineProton", + "description": "An oneline userChrome.css theme for Firefox, which aims to keep the Proton experience \n Compatibility: V89+", + "image": "assets/img/themes/onelineproton.webp", + "tags": [ + "one-line", + "proton", + "v89", + "minimal", + "dark", + "light", + "lr-tech", + "v89" + ], + "repository": "https://github.com/lr-tech/OnelineProton" + }, + { + "title": "Firefox Compact Mode", + "link": "https://github.com/dannycolin/fx-compact-mode", + "description": "A compact mode that follows Firefox 89 (known as Proton) design system while using the same vertical space as the compact mode in Firefox 88 (known as Photon). \n Compatibility: V91+", + "image": "assets/img/themes/fx-compact-mode.webp", + "tags": [ + "dannycolin", + "compact", + "proton", + "photon", + "v91", + "pure" + ], + "repository": "https://github.com/dannycolin/fx-compact-mode" + }, + { + "title": "GruvFox by Alfarex2019", + "link": "https://github.com/FirefoxCSSThemers/GruvFox", + "description": "GruvFox is a remix of dpcdpc11's theme, featuring the gruvbox color palette.\n Compatibility: V91+", + "image": "assets/img/themes/20930130265614-a7559ea7-70fd-44f9-a790-34c5c0e31493.webp", + "tags": [ + "alfarexguy2019", + "gruv", + "dark", + "pure", + "v91" + ], + "repository": "https://github.com/FirefoxCSSThemers/GruvFox" + }, + { + "title": "Proton Square", + "link": "https://github.com/leadweedy/Firefox-Proton-Square", + "description": "Recreates the feel of Quantum with its squared tabs and menus. No rounded corners to be seen.\n Compatibility: V91+", + "image": "assets/img/themes//24535ff_protonbutquantum.webp", + "tags": [ + "squared", + "v91", + "pure", + "quantum", + "leadweedy" + ], + "repository": "https://github.com/leadweedy/Firefox-Proton-Square" + }, + { + "title": "Natura for Firefox", + "link": "https://github.com/firefoxcssthemers/natura-for-firefox", + "description": "Nature theme for Firefox \n Compatibility: V91+", + "image": "assets/img/themes/natura.webp", + "tags": [ + "green", + "yellow", + "firefoxcssthemers", + "alfarexguy2019", + "v91", + "pure" + ], + "repository": "https://github.com/firefoxcssthemers/natura-for-firefox" + }, + { + "title": "MacOSVibrant", + "link": "https://github.com/Tnings/MacosVibrant", + "description": "A theme that uses MacOS Vibrancy and is styled after other Apple Apps \n Compatibility: V91+", + "image": "assets/img/themes/MacOSVibrant.webp", + "tags": [ + "Tnings", + "transparency", + "dark", + "rounded", + "v91" + ], + "repository": "https://github.com/Tnings/MacosVibrant" + }, + { + "title": "Cascade", + "link": "https://github.com/andreasgrafen/cascade", + "description": "A responsive \"One-Line\" theme based on SimpleFox for the new ProtonUI. \n Compatibility: V91+", + "image": "assets/img/themes/cascade.webp", + "tags": [ + "andreasgrafen", + "minial", + "oneline", + "responsive", + "one-line", + "proton", + "light", + "dark", + "v91" + ], + "repository": "https://github.com/andreasgrafen/cascade" + }, + { + "title": "Firefox GNOME theme", + "link": "https://github.com/rafaelmardojai/firefox-gnome-theme", + "description": "A bunch of CSS code to make Firefox look closer to GNOME's native apps. \n Compatibility: V91+", + "image": "assets/img/themes/firefox-gnome-theme.webp", + "tags": [ + "rafaelmardojai", + "gnome", + "v91", + "rounded", + "light", + "dark", + "v91" + ], + "repository": "https://github.com/rafaelmardojai/firefox-gnome-theme" + }, + { + "title": "PretoFox", + "link": "https://github.com/alfarexguy2019/pretofox", + "description": "A Black n White AMOLED theme for Firefox, inspired by the Preto color scheme. \n Compatibility: V91+", + "image": "assets/img/themes/PretoFox.webp", + "tags": [ + "alfarexguy2019", + "black", + "white", + "dark", + "light", + "v91" + ], + "repository": "https://github.com/alfarexguy2019/pretofox" + }, + { + "title": "Elementary OS Odin Firefox theme", + "link": "https://github.com/Zonnev/elementaryos-firefox-theme", + "description": "This theme supports all the window buttons layouts from Tweaks and it blends into the elementary OS Odin user interface. \n Compatibility: V91+", + "image": "assets/img/themes/firefox-eos6-theme.webp", + "tags": [ + "Zonnev", + "elementary-OS", + "OS", + "dark", + "light" + ], + "repository": "https://github.com/Zonnev/elementaryos-firefox-theme" + }, + { + "title": "Oneliner Deluxe", + "link": "https://github.com/Doosty/Oneliner-Deluxe", + "description": "Minimal, customizable and theme compatible \n Compatibility: V91+", + "image": "assets/img/themes/Oneliner_Deluxe.webp", + "tags": [ + "one-line", + "Doosty", + "v91" + ], + "repository": "https://github.com/Doosty/Oneliner-Deluxe" + }, + { + "title": "Simple Oneliner", + "link": "https://github.com/hakan-demirli/Firefox_Custom_CSS", + "description": "A simple theme to maximize the vertical space of your monitor \n Compatibility: V91+", + "image": "assets/img/themes/Simple_Oneliner.webp", + "tags": [ + "Sidebery", + "dark", + "light", + "pdf", + "one-line", + "hakan-demirli", + "v91" + ], + "repository": "https://github.com/hakan-demirli/Firefox_Custom_CSS" + }, + { + "title": "GentleFox", + "link": "https://github.com/alfarexguy2019/gentlefox", + "description": "A Firefox theme, which features gentle curves, transparency and a minimal interface. \n Compatibility: V91+", + "image": "assets/img/themes/GentleFox.webp", + "tags": [ + "alfarexguy2019", + "blur", + "transparency", + "rounded", + "dark", + "light" + ], + "repository": "https://github.com/alfarexguy2019/gentlefox" + }, + { + "title": "Clean and Transparent", + "link": "https://github.com/Filip-Sutkowy/blurclean-firefox-theme", + "description": "Clean theme with as much transparency as Firefox lets you do \n Compatibility: V91+", + "image": "assets/img/themes/Clean_and_Transparent.webp", + "tags": [ + "Filip-Sutkowy", + "blur", + "pure", + "dark", + "light", + "transparency", + "v91" + ], + "repository": "https://github.com/Filip-Sutkowy/blurclean-firefox-theme" + }, + { + "title": "Waterfall", + "link": "https://github.com/crambaud/waterfall", + "description": "A minimalist one line theme", + "image": "assets/img/themes/waterfall.webp", + "tags": [ + "crambaud", + "minimal", + "one-line", + "mouse" + ], + "repository": "https://github.com/crambaud/waterfall" + }, + { + "title": "Brave-Fox: The Reimagined Browser, Reimagined", + "link": "https://github.com/Soft-Bred/Brave-Fox", + "description": "Brave-Fox is a Firefox Theme that brings Brave's design elements into Firefox.", + "image": "assets/img/themes//184007ilia7199au71.webp", + "tags": [ + "brave", + "pure", + "js", + "javascript", + "Soft-Bred" + ], + "repository": "https://github.com/Soft-Bred/Brave-Fox" + }, + { + "title": "KeyFox- A minimal, keyboard centered OneLiner CSS.", + "link": "https://github.com/alfarexguy2019/KeyFox", + "description": "KeyFox is A simple, minimal OneLiner Keyboard-centered CSS for Firefox.", + "image": "assets/img/themes//13268136501706-accca691-b9c3-4841-acd7-6bb843d2f422.webp", + "tags": [ + "black", + "dark", + "white", + "one-line", + "alfarexguy2019" + ], + "repository": "https://github.com/alfarexguy2019/KeyFox" + }, + { + "title": "CompactFox", + "link": "https://github.com/Tnings/CompactFox", + "description": "A simple theme that compacts a lot of the UI elements", + "image": "assets/img/themes/CompactFoxPreview.webp", + "tags": [ + "compact", + "dark", + "light", + "Tnings", + "pure" + ], + "repository": "https://github.com/Tnings/CompactFox" + }, + { + "title": "AuroraFox- Auroral Firefox", + "link": "https://github.com/alfarexguy2019/aurora-fox", + "description": "AuroraFox is a clean rounded Firefox theme, made using CSS, to match with the trendy 'Aurora' Colour Palette.", + "image": "assets/img/themes//18328141609919-befbc7f3-5199-4672-9ba1-8551d2a4e5a1.webp", + "tags": [ + "dark", + "minimal", + "purple", + "alfarexguy2019" + ], + "repository": "https://github.com/alfarexguy2019/aurora-fox" + }, + { + "title": "starry-fox", + "link": "https://github.com/sagars007/starry-fox", + "description": "Firefox CSS stylesheets for the Dark Space Theme. Matching more UI elements with the theme.", + "image": "assets/img/themes/starry-fox-resize.webp", + "tags": [ + "sagars007", + "dark", + "compact", + "darkspace", + "stars", + "nightsky", + "gradient", + "windows11" + ], + "repository": "https://github.com/sagars007/starry-fox" + }, + { + "title": "Firefox-GX", + "link": "https://github.com/Godiesc/firefox-gx", + "description": "Firefox Theme to Opera-GX skin Lovers.", + "image": "assets/img/themes/firefox-gx.webp", + "tags": [ + "Godiesc", + "dark", + "opera", + "gx", + "theme", + "adapted", + "light", + "fuchsia" + ], + "repository": "https://github.com/Godiesc/firefox-gx" + }, + { + "title": "Elegant Fox", + "link": "https://github.com/ayushhroyy/elegantfox", + "description": "A firefox context menu theme and background wallpaper support with linux desktops being the main focus", + "image": "assets/img/themes/elegantfox.webp ", + "tags": [ + "ayushhroyy", + "nord", + "dark", + "light", + "adaptive" + ], + "repository": "https://github.com/ayushhroyy/elegantfox" + }, + { + "title": "TYH Fox", + "link": "https://github.com/tyuhao/TYHfox", + "description": "A firefox Theme CSS", + "image": "assets/img/themes/TYHFox.webp ", + "tags": [ + "TYHFox", + "dark", + "light", + "adaptive" + ], + "repository": "https://github.com/tyuhao/TYHfox" + }, + { + "title": "AutoColor-Minimal-Proton", + "link": "https://github.com/Neikon/AutoColor-Minimal-Proton", + "description": "Some settings that together with the vivaldifox add-on create a minimalist theme whose color is the color of the website you are visiting.", + "image": "assets/img/themes/AutoColor-Minimal-Proton.webp", + "tags": [ + "vivaldi", + "proton", + "minimal", + "autocolor", + "dark", + "light", + "borderless", + "adaptive", + "compact", + "one-line", + "neikon" + ], + "repository": "https://github.com/Neikon/AutoColor-Minimal-Proton" + }, + { + "title": "SimpleFox Feather Edition", + "link": "https://github.com/BlueFalconHD/SimpleFox-Feather/", + "description": "A fork of SimpleFox that uses feather icons!", + "image": "assets/img/themes/simplefox-feather.webp", + "tags": [ + "Simplefox", + "Fork", + "Icons", + "BlueFalconHD" + ], + "repository": "https://github.com/BlueFalconHD/SimpleFox-Feather/" + }, + { + "title": "gale for Firefox", + "link": "https://github.com/mgastonportillo/gale-for-ff", + "description": "My CSS files to use with Firefox and Sidebery", + "image": "assets/img/themes//8988rjy7uTd.webp", + "tags": [ + "gale", + "dark", + "minimalistic", + "adaptive", + "compact", + "autohide", + "sidebar" + ], + "repository": "https://github.com/mgastonportillo/gale-for-ff" + }, + { + "title": "Firefox-UWP-Style-Theme-Omars-Edit", + "link": "https://github.com/omarb737/Firefox-UWP-Style-Theme-Omars-Edit", + "description": "A minimalistic-retro theme based off the UWP interface", + "image": "assets/img/themes//321608U0N6E.webp", + "tags": [ + "omarb737", + "dark", + "retro", + "minimalist", + "UWP" + ], + "repository": "https://github.com/omarb737/Firefox-UWP-Style-Theme-Omars-Edit" + }, + { + "title": "Modoki Firefox", + "link": "https://github.com/soup-bowl/Modoki-Firefox", + "description": "Bringing the classic Modern Modoki Netscape theme back", + "image": "assets/img/themes/soupbowlmodoki.webp", + "tags": [ + "soup-bowl", + "classic", + "netscape", + "skeuomorphic", + "light", + "retro" + ], + "repository": "https://github.com/soup-bowl/Modoki-Firefox" + }, + { + "title": "TileFox", + "link": "https://github.com/davquar/tilefox", + "description": "A minimalistic Firefox userChrome.css that integrates well with tiling window managers like i3", + "image": "assets/img/themes/tilefox.webp", + "tags": [ + "davquar", + "light", + "dark", + "tile", + "tilefox", + "minimal", + "minimalistic", + "brutalist", + "compact", + "tiling", + "dwm", + "sway", + "i3", + "keyboard", + "linux" + ], + "repository": "https://github.com/davquar/tilefox" + }, + { + "title": "AestheticFox", + "link": "https://github.com/AidanMercer/AestheticFox", + "description": "A minamist and aesthetic userstyle theme for Firefox", + "image": "assets/img/themes/AestheticFox.webp", + "tags": [ + "clean", + "compact", + "aestheticfox", + "minimal", + "minimalistic", + "aesthetic" + ], + "repository": "https://github.com/AidanMercer/AestheticFox" + }, + { + "title": "Firefox 'Safari 15' Theme", + "link": "https://github.com/denizjcan/Firefox-Safari-15-Theme", + "description": "A Firefox theme that emulates the Safari 15 interface and new tab page.", + "image": "assets/img/themes//25940safari2.webp", + "tags": [ + "clean", + "compact", + "oneline", + "safari", + "ventura", + "aesthetic", + "mac", + "modern", + "compact", + "dark", + "denizjcan", + "safari" + ], + "repository": "https://github.com/denizjcan/Firefox-Safari-15-Theme" + }, + { + "title": "Firefox Onebar", + "link": "https://git.gay/freeplay/Firefox-Onebar", + "description": "A single bar for Firefox's UI.", + "image": "assets/img/themes/onebar.webp", + "tags": [ + "Freeplay", + "oneline", + "onebar", + "compact", + "minimal" + ], + "repository": "https://git.gay/freeplay/Firefox-Onebar" + }, + { + "title": "Dracula", + "link": "https://github.com/jannikbuscha/firefox-dracula", + "description": "A Firefox CSS Theme that aims to recreate the look and feel of the Chromium version of Microsoft Edge in the style of Dracula.", + "image": "assets/img/themes/dracula.webp", + "tags": [ + "edge", + "dark", + "microsoft", + "dracula" + ], + "repository": "https://github.com/jannikbuscha/firefox-dracula" + }, + { + "title": "rounded-fox", + "link": "https://github.com/Etesam913/rounded-fox", + "description": "A minimalist theme that uses animation to hide visual clutter.", + "image": "assets/img/themes/rounded_fox.webp", + "tags": [ + "clean", + "compact", + "minimalist", + "dark", + "light", + "animation" + ], + "repository": "https://github.com/Etesam913/rounded-fox" + }, + { + "title": "Three Rows Simple Compact Clean CSS", + "link": "https://github.com/hornster02/Firefox-Three-Rows-Simple-Compact-Clean-CSS", + "description": "A compact theme based on use multiple rows", + "image": "assets/img/themes/Three_Rows.webp", + "tags": [ + "simple", + "compact", + "minimalist", + "rows" + ], + "repository": "https://github.com/hornster02/Firefox-Three-Rows-Simple-Compact-Clean-CSS" + }, + { + "title": "Bali10050's theme", + "link": "https://github.com/Bali10050/FirefoxCSS", + "description": "A minimal looking oneliner, with modular code for easy editing", + "image": "assets/img/themes/Bali10050sPreview.webp", + "tags": [ + "Bali10050", + "oneline", + "light", + "dark", + "linux", + "windows", + "rounded", + "proton", + "responsive", + "minimalistic" + ], + "repository": "https://github.com/Bali10050/FirefoxCSS" + }, + { + "title": "ViceFox", + "link": "https://vicefox.vercel.app", + "description": "Don't ask why it's called 'ViceFox'", + "image": "assets/img/themes/ViceFox.webp", + "tags": [ + "clean", + "compact", + "safari", + "minimal", + "macos" + ], + "repository": "https://github.com/jtlw99/vicefox" + }, + { + "title": "DarkMatter", + "link": "https://github.com/BloodyHell619/Firefox-Theme-DarkMatter", + "description": "An intensively worked on, and highly customized dark theme made for Firefox Proton, stretching darkness into every corner of the browser and perfecting even the tiniest details ", + "image": "assets/img/themes/darkmatter.webp", + "tags": [ + "dark", + "Vertical", + "squared", + "proton" + ], + "repository": "https://github.com/BloodyHell619/Firefox-Theme-DarkMatter" + }, + { + "title": "Fox11", + "link": "https://github.com/Neikon/Fox11", + "description": "A Firefox CSS themes with auto-color, Mica, auto-hide nav-bar support. Inspired in firefox-one , Edge/Chrome restyle 2023.", + "image": "assets/img/themes/fox11.webp", + "tags": [ + "vivaldi", + "proton", + "minimal", + "autocolor", + "dark", + "light", + "mica", + "adaptive", + "transparency", + "neikon", + "one-line" + ], + "repository": "https://github.com/Neikon/Fox11" + }, + { + "title": "zap's cool photon theme", + "link": "https://github.com/zapSNH/zapsCoolPhotonTheme", + "description": "Party like it's Firefox 57-88!", + "image": "assets/img/themes/zaps-photon.webp", + "tags": [ + "photon", + "compact", + "squared", + "quantum" + ], + "repository": "https://github.com/zapSNH/zapsCoolPhotonTheme" + }, + { + "title": "Firefox-ONE", + "link": "https://github.com/Godiesc/firefox-one", + "description": "Dress Firefox with the Opera One skin", + "image": "assets/img/themes/firefox-one.webp", + "tags": [ + "Godiesc", + "opera", + "one", + "opera-one", + "firefox", + "firefox-one", + "theme", + "adaptive", + "tree", + "tabs" + ], + "repository": "https://github.com/Godiesc/firefox-one" + }, + { + "title": "Essence", + "link": "https://github.com/JarnotMaciej/Essence", + "description": "Compact, beautiful and minimalistic theme for the Firefox web browser.", + "image": "assets/img/themes/essence.webp", + "tags": [ + "compact", + "minimal", + "light", + "modern", + "oneline", + "rounded", + "clean" + ], + "repository": "https://github.com/JarnotMaciej/Essence" + }, + { + "title": "minimal-one-line-firefox", + "link": "https://github.com/ttntm/minimal-one-line-firefox", + "description": "A minimal oneliner, to minimizing the space used for url and tab bar", + "image": "assets/img/themes/molff.webp", + "tags": [ + "oneline", + "light", + "dark", + "squared", + "compact", + "minimalistic" + ], + "repository": "https://github.com/ttntm/minimal-one-line-firefox" + }, + { + "title": "RealFire", + "link": "https://github.com/Hakanbaban53/RealFire", + "description": "A minimalist animated oneliner theme for Firefox perfectly matching Real Dark", + "image": "assets/img/themes/RealFire-main.webp", + "tags": [ + "oneline", + "responsive", + "light", + "dark", + "animation", + "rounded", + "compact", + "minimalistic", + "black" + ], + "repository": "https://github.com/Hakanbaban53/RealFire" + }, + { "title": "Firefox-Alpha", "link": "https://github.com/Tagggar/Firefox-Alpha", "description": "Super clear desktop browser with zero buttons and gesture controls", "image": "assets/img/themes/Firefox-Alpha.webp", - "tags": ["Tagggar", "alpha", "responsive", "light", "dark", "animation", "rounded", "compact", "clear", "clean", "minimalistic", "minimal", "simple", "gestures"] - }, - { + "tags": [ + "Tagggar", + "alpha", + "responsive", + "light", + "dark", + "animation", + "rounded", + "compact", + "clear", + "clean", + "minimalistic", + "minimal", + "simple", + "gestures" + ], + "repository": "https://github.com/Tagggar/Firefox-Alpha" + }, + { "title": "Dark Star", "link": "https://gitlab.com/ivelieu/dark-star-firefox-skin", "description": "A color-customizable, zero navbar padding skin, modified from Starry Fox", "image": "assets/img/themes//11608darkstar_3.webp", - "tags": [ "Ivelieu", "dark", "minimal", "zeropadding", "customizable"] - }, - { + "tags": [ + "Ivelieu", + "dark", + "minimal", + "zeropadding", + "customizable" + ], + "repository": "https://gitlab.com/ivelieu/dark-star-firefox-skin" + }, + { "title": "ImpossibleFox", "link": "https://github.com/Naezr/ImpossibleFox", "description": "A simple and fast one-line theme for Firefox inspired by Safari's compact layout. ", "image": "assets/img/themes/ImpossibleFox.webp", - "tags": [ "Naezr", "dark", "light", "oneline" ] - }, - { - "title": "SideFox", - "link": "https://github.com/rainbowflesh/Me-Personal-Firefox-Settup", - "description": "MS Edge style, sidebar, blur, and more.", - "image": "assets/img/themes/sidefox.webp", - "tags": [ "sidebar", "animated", "simple", "responsive", "linux", "windows", "macos"] - }, - { - "title": "arcadia", - "link": "https://github.com/tyrohellion/arcadia", - "description": "Minimal Firefox theme and user.js focused on speed and design", - "image": "assets/img/themes/arcadia.webp", - "tags": [ "tyro", "dark", "minimal", "clean", "hovercards", "simple", "compact", "minimalistic" ] - }, - { - "title": "Firefox Plus", - "link": "https://github.com/amnweb/firefox-plus", - "description": "Firefox Plus, CSS tweaks for Firefox ", - "image": "assets/img/themes//6299firefox-26-11-2023.webp", - "tags": ["firefox","firefox-customization","minimal","firefox-theme","dark"] - }, - { - "title": "Shina Fox", - "link": "https://github.com/Shina-SG/Shina-Fox", - "description": "A Minimal, Cozy, Vertical Optimized Firefox Theme", - "image": "assets/img/themes/Shina.webp", - "tags": [ "Shina", "Vertical", "Sidebery", "Minimal", "Dark", "Light", "Adaptive" ] - }, - { - "title": "ArnimFox", - "link": "https://github.com/SecondMikasa/ArnimFox", - "description": "A Minimalist Dark Themed Firefox enabling vertical tabs support and modern URL Bar", - "image": "assets/img/themes/ArnimFox.webp", - "tags": ["Minimalistic", "Vertical", "Sidebery", "Dark", "Sidebar"] - }, - { - "title": "Firefox Rounded Theme", - "link": "https://github.com/Khalylexe/Firefox-Rounded-Theme", - "description": "Just a Firefox CSS to make it more rounded ;) ", - "image": "assets/img/themes/Khalyl.webp", - "tags": [ "Khalylexe", "Dark", "Rounded", "firefox" ] - }, - { - "title": "ShyFox", - "link": "https://github.com/Naezr/ShyFox", - "description": "A very shy little theme that hides the entire browser interface in the window border", - "image": "assets/img/themes/shyfox.webp", - "tags": [ "Naezr", "minimal" ] - }, - { - "title": "greenyfox", - "link": "https://github.com/alan-ar1/greenyfox", - "description": "A modern dark theme with macos title bar buttons and Iosevka font", - "image": "assets/img/themes//9037DGTAHYA.webp", - "tags": [ "alan-ar1", "Dark", "title-bar", "minimal", "Iosevka"] - }, - { - "title": "98/95fox", - "link": "https://github.com/osem598/Firefox-98", - "description": "Chicago 95 & Windows95/98-like theme for firefox", - "image": "assets/img/themes/ff95.webp", - "tags": [ "osem598", "Light", "Retro", "Chicago", "98", "95"] - }, - { + "tags": [ + "Naezr", + "dark", + "light", + "oneline" + ], + "repository": "https://github.com/Naezr/ImpossibleFox" + }, + { + "title": "SideFox", + "link": "https://github.com/rainbowflesh/Me-Personal-Firefox-Settup", + "description": "MS Edge style, sidebar, blur, and more.", + "image": "assets/img/themes/sidefox.webp", + "tags": [ + "sidebar", + "animated", + "simple", + "responsive", + "linux", + "windows", + "macos" + ], + "repository": "https://github.com/rainbowflesh/Me-Personal-Firefox-Settup" + }, + { + "title": "arcadia", + "link": "https://github.com/tyrohellion/arcadia", + "description": "Minimal Firefox theme and user.js focused on speed and design", + "image": "assets/img/themes/arcadia.webp", + "tags": [ + "tyro", + "dark", + "minimal", + "clean", + "hovercards", + "simple", + "compact", + "minimalistic" + ], + "repository": "https://github.com/tyrohellion/arcadia" + }, + { + "title": "Firefox Plus", + "link": "https://github.com/amnweb/firefox-plus", + "description": "Firefox Plus, CSS tweaks for Firefox ", + "image": "assets/img/themes//6299firefox-26-11-2023.webp", + "tags": [ + "firefox", + "firefox-customization", + "minimal", + "firefox-theme", + "dark" + ], + "repository": "https://github.com/amnweb/firefox-plus" + }, + { + "title": "Shina Fox", + "link": "https://github.com/Shina-SG/Shina-Fox", + "description": "A Minimal, Cozy, Vertical Optimized Firefox Theme", + "image": "assets/img/themes/Shina.webp", + "tags": [ + "Shina", + "Vertical", + "Sidebery", + "Minimal", + "Dark", + "Light", + "Adaptive" + ], + "repository": "https://github.com/Shina-SG/Shina-Fox" + }, + { + "title": "ArnimFox", + "link": "https://github.com/SecondMikasa/ArnimFox", + "description": "A Minimalist Dark Themed Firefox enabling vertical tabs support and modern URL Bar", + "image": "assets/img/themes/ArnimFox.webp", + "tags": [ + "Minimalistic", + "Vertical", + "Sidebery", + "Dark", + "Sidebar" + ], + "repository": "https://github.com/SecondMikasa/ArnimFox" + }, + { + "title": "Firefox Rounded Theme", + "link": "https://github.com/Khalylexe/Firefox-Rounded-Theme", + "description": "Just a Firefox CSS to make it more rounded ;) ", + "image": "assets/img/themes/Khalyl.webp", + "tags": [ + "Khalylexe", + "Dark", + "Rounded", + "firefox" + ], + "repository": "https://github.com/Khalylexe/Firefox-Rounded-Theme" + }, + { + "title": "ShyFox", + "link": "https://github.com/Naezr/ShyFox", + "description": "A very shy little theme that hides the entire browser interface in the window border", + "image": "assets/img/themes/shyfox.webp", + "tags": [ + "Naezr", + "minimal" + ], + "repository": "https://github.com/Naezr/ShyFox" + }, + { + "title": "greenyfox", + "link": "https://github.com/alan-ar1/greenyfox", + "description": "A modern dark theme with macos title bar buttons and Iosevka font", + "image": "assets/img/themes//9037DGTAHYA.webp", + "tags": [ + "alan-ar1", + "Dark", + "title-bar", + "minimal", + "Iosevka" + ], + "repository": "https://github.com/alan-ar1/greenyfox" + }, + { + "title": "98/95fox", + "link": "https://github.com/osem598/Firefox-98", + "description": "Chicago 95 & Windows95/98-like theme for firefox", + "image": "assets/img/themes/ff95.webp", + "tags": [ + "osem598", + "Light", + "Retro", + "Chicago", + "98", + "95" + ], + "repository": "https://github.com/osem598/Firefox-98" + }, + { "title": "ArcWTF", "link": "https://github.com/KiKaraage/ArcWTF/", "description": "UserChrome.css theme to bring Arc Browser look from Windows to Firefox! ", "image": "assets/img/themes/arcwtf.webp", - "tags": [ "KiKaraage", "dark", "light", "Arc Browser", "Sidebery", "vertical tabs", "autohide", "minimal" ] - }, - { - "title": "FrameUI for Firefox", - "link": "https://github.com/FineFuturity/FrameUIForFirefox/", - "description": "A new way to view your web content. Like looking at photos printed from an old Polaroid camera.", - "image": "assets/img/themes/FrameUIScreenshot.webp", - "tags": [ "FineFuturity", "one line", "vertical tabs", "Sidebery", "Tab Center Reborn", "toolbars on bottom", "immersive", "minimal" ] - }, - { - "title": "arcfox", - "link": "https://github.com/betterbrowser/arcfox", - "description": "make firefox flow like arc", - "image": "assets/img/themes/arcfox.webp", - "tags": [ "nikollesan", "dark", "light", "luanderfarias", "bettterbrowser" ] - }, - { - "title": "WhiteSur", - "link": "https://github.com/vinceliuice/WhiteSur-firefox-theme", - "description": "A MacOSX Safari theme for Firefox 80+", - "image": "assets/img/themes/whitesur_vinceliuice.webp", - "tags": [ "vinceliuice", "dark", "light", "MacOSX ", "Monterey", "safari", "mac", "oneline" ] - }, - { - "title": "Another Oneline", - "link": "https://github.com/mimipile/firefoxCSS", - "description": "Another simple, oneline, minimal, keyboard-centered Firefox CSS theme.", - "image": "assets/img/themes/screenshot-site.webp", - "tags": [ "mimipile", "dark", "light", "adaptative", "onebar", "oneline", "minimal", "keyboard", "keyboard centered" ] - }, - { - "title": "MacFox-Theme", - "link": "https://github.com/d0sse/macFox-theme", - "description": "Safari-like minimalistic theme with system accent color", - "image": "assets/img/themes/d0sse_mac_fox_screen.webp", - "tags": [ "dark", "light", "accent", "minimal", "macos", "safari", "mac", "autocolor"] - }, - { - "title": "EdgyArc Fr", - "link": "https://github.com/artsyfriedchicken/EdgyArc-fr/", - "description": "Combining the sleekness of Microsoft Edge and the aesthetics of the Arc browser", - "image": "assets/img/themes/edgyarc-fr.webp", - "tags": [ "artsyFriedChicken", "dark", "light", "macOS", "mac", "arc", "edge", "translucent", "blur", "sidebery", "Vertical Tabs" ] - }, - { - "title": "Blurfox", - "link": "https://github.com/safak45xx/Blurfox", - "description": "A Firefox theme", - "image": "assets/img/themes/blurfox.webp", - "tags": ["blur", "minimal","oneline"] - }, - { - "title": "FF Ultima", - "link": "https://github.com/soulhotel/FF-ULTIMA", - "description": "Native Vertical Tabs, keep your sidebar, no extensions. No overthinking. FF Ultima", - "image": "assets/img/themes/FF_Ultima.webp", - "tags": ["vertical tabs", "minimal","lightweight","customizable","dark","light"] - }, - { - "title": "Firefox Xtra Compact", - "link": "https://github.com/CarterSnich/firefox-xtra-compact", - "description": "Aims to make Firefox more compact and give a tiny bit more web view area for low-screen devices.", - "image": "assets/img/themes/xtracompact.webp", - "tags": [ "CarterSnich", "compact", "themeless"] - }, - { - "title": "Aero Firefox", - "link": "https://github.com/SandTechStuff/AeroFirefox", - "description": "Brings the Windows 7 titlebar buttons to modern versions of Firefox", - "image": "assets/img/themes/aeroFirefox.webp", - "tags": ["aero","dark","light","lightweight","windows7","minimal"] - }, - { - "title": "PotatoFox", - "link": "https://codeberg.org/awwpotato/PotatoFox", - "description": "A compact and minimal firefox theme using Sidebery", - "image": "assets/img/themes/PotatoFox.webp", - "tags": ["minimal","compact","vertical tabs","Sidebery","arc"] - }, - { - "title": "Minimal-Arc", - "link": "https://github.com/zayihu/Minimal-Arc", - "description": "Minimal light Firefox theme with Arc like design with vertical tabs", - "image": "assets/img/themes/minimal_arc.webp", - "tags": ["minimal", "compact", "vertical-tabs", "Sidebery", "light", "Arc Browser"] - }, - { - "title": "SnowFox", - "link": "https://github.com/naveensagar765/SnowFox", - "description": "Modern blue glass theme with side bookmark bar", - "image": "assets/img/themes/snowfox.webp", - "tags": [ "moder", "blue", "side-bookmark-bar","home page"] - }, - { - "title": "AnimatedFox", - "link": "https://github.com/RemyIsCool/AnimatedFox", - "description": "A minimal Firefox/LibreWolf theme with satisfying animations and a hidden URL bar.", - "image": "assets/img/themes/animatedfox.webp", - "tags": ["RemyIsCool", "dark", "minimal", "hidden url bar", "animations"] - }, - { - "title": "Quietfox Reborn", - "link": "https://github.com/TheGITofTeo997/quietfoxReborn", - "description": "Resurrecting a very Clean Firefox userChrome Mod ", - "image": "assets/img/themes/20053home.webp", - "tags": [ "Teo", "sleek", "minimal", "quiet" ] - }, - { - "title": "GlassyFox", - "link": "https://github.com/AnhNguyenlost13/GlassyFox", - "description": "Keeps the original new tab page layout while making it look as glassy as possible.", - "image": "assets/img/themes/glassyfox.webp", - "tags": [ "blur", "AnhNguyenlost13" ] - }, - { - "title": "98/95fox Xtra Compact", - "link": "https://github.com/programneer/Firefox-98-Xtra-Compact", - "description": "The mix of nostalgia and compact.", - "image": "assets/img/themes/ff95xtracompact.webp", - "tags": [ "Programneer", "Light", "Retro", "Chicago", "98", "95", "compact" ] - }, - { - "title": "FireFox OneLine Navbar", - "link": "https://github.com/FawazBinSaleem/FireFoxOneLinerCSS", - "description": "A compact oneliner navbar css theme.", - "image": "assets/img/themes/fireFoxOneLinerCSS.webp", - "tags": ["oneline", "black color", "amoled", "oneliner", "navbar", "One Line", "compact" ] - }, - { - "title": "Monochrome Neubrutalism Firefox Simple", - "link": "https://github.com/Kaskapa/Monochrome-Neubrutalism-Firefox-Theme", - "description": "A simple light theme I made to explore the world of Firefox theming.", - "image": "assets/img/themes/monochromeNeubrutalism.webp", - "tags": [ "light", "neubrutalislm", "monochrome", "simple", "Kaskapa" ] - }, - { - "title": "minimalistest oneliner", - "link": "https://github.com/yari-dog/minimalistest-oneliner-librewolf", - "description": "buttons are for nerds.", - "image": "assets/img/themes/minimalist-oneliner.webp", - "tags": [ "simple", "oneliner", "oneline", "compact" ] - }, - { - "title": "Arc UI", - "link": "https://github.com/dxdotdev/arc-ui", - "description": "Make your Firefox like the Arc Browser.", - "image": "assets/img/themes/29957ui.webp", - "tags": [ "dxdotdev", "arc browser", "compact", "modern" ] - }, - { - "title": "Material Fox Updated", - "link": "https://github.com/edelvarden/material-fox-updated", - "description": "🦊 Firefox user CSS theme looks similar to Chrome.", - "image": "assets/img/themes/material-fox-updated-preview.webp", - "tags": [ "dark", "light", "rtl", "customizable", "material", "material-design", "refresh", "modern", "updated" ] - } + "tags": [ + "KiKaraage", + "dark", + "light", + "Arc Browser", + "Sidebery", + "vertical tabs", + "autohide", + "minimal" + ], + "repository": "https://github.com/KiKaraage/ArcWTF/" + }, + { + "title": "FrameUI for Firefox", + "link": "https://github.com/FineFuturity/FrameUIForFirefox/", + "description": "A new way to view your web content. Like looking at photos printed from an old Polaroid camera.", + "image": "assets/img/themes/FrameUIScreenshot.webp", + "tags": [ + "FineFuturity", + "one line", + "vertical tabs", + "Sidebery", + "Tab Center Reborn", + "toolbars on bottom", + "immersive", + "minimal" + ], + "repository": "https://github.com/FineFuturity/FrameUIForFirefox/" + }, + { + "title": "arcfox", + "link": "https://github.com/betterbrowser/arcfox", + "description": "make firefox flow like arc", + "image": "assets/img/themes/arcfox.webp", + "tags": [ + "nikollesan", + "dark", + "light", + "luanderfarias", + "bettterbrowser" + ], + "repository": "https://github.com/betterbrowser/arcfox" + }, + { + "title": "WhiteSur", + "link": "https://github.com/vinceliuice/WhiteSur-firefox-theme", + "description": "A MacOSX Safari theme for Firefox 80+", + "image": "assets/img/themes/whitesur_vinceliuice.webp", + "tags": [ + "vinceliuice", + "dark", + "light", + "MacOSX ", + "Monterey", + "safari", + "mac", + "oneline" + ], + "repository": "https://github.com/vinceliuice/WhiteSur-firefox-theme" + }, + { + "title": "Another Oneline", + "link": "https://github.com/mimipile/firefoxCSS", + "description": "Another simple, oneline, minimal, keyboard-centered Firefox CSS theme.", + "image": "assets/img/themes/screenshot-site.webp", + "tags": [ + "mimipile", + "dark", + "light", + "adaptative", + "onebar", + "oneline", + "minimal", + "keyboard", + "keyboard centered" + ], + "repository": "https://github.com/mimipile/firefoxCSS" + }, + { + "title": "MacFox-Theme", + "link": "https://github.com/d0sse/macFox-theme", + "description": "Safari-like minimalistic theme with system accent color", + "image": "assets/img/themes/d0sse_mac_fox_screen.webp", + "tags": [ + "dark", + "light", + "accent", + "minimal", + "macos", + "safari", + "mac", + "autocolor" + ], + "repository": "https://github.com/d0sse/macFox-theme" + }, + { + "title": "EdgyArc Fr", + "link": "https://github.com/artsyfriedchicken/EdgyArc-fr/", + "description": "Combining the sleekness of Microsoft Edge and the aesthetics of the Arc browser", + "image": "assets/img/themes/edgyarc-fr.webp", + "tags": [ + "artsyFriedChicken", + "dark", + "light", + "macOS", + "mac", + "arc", + "edge", + "translucent", + "blur", + "sidebery", + "Vertical Tabs" + ], + "repository": "https://github.com/artsyfriedchicken/EdgyArc-fr/" + }, + { + "title": "Blurfox", + "link": "https://github.com/safak45xx/Blurfox", + "description": "A Firefox theme", + "image": "assets/img/themes/blurfox.webp", + "tags": [ + "blur", + "minimal", + "oneline" + ], + "repository": "https://github.com/safak45xx/Blurfox" + }, + { + "title": "FF Ultima", + "link": "https://github.com/soulhotel/FF-ULTIMA", + "description": "Native Vertical Tabs, keep your sidebar, no extensions. No overthinking. FF Ultima", + "image": "assets/img/themes/FF_Ultima.webp", + "tags": [ + "vertical tabs", + "minimal", + "lightweight", + "customizable", + "dark", + "light" + ], + "repository": "https://github.com/soulhotel/FF-ULTIMA" + }, + { + "title": "Firefox Xtra Compact", + "link": "https://github.com/CarterSnich/firefox-xtra-compact", + "description": "Aims to make Firefox more compact and give a tiny bit more web view area for low-screen devices.", + "image": "assets/img/themes/xtracompact.webp", + "tags": [ + "CarterSnich", + "compact", + "themeless" + ], + "repository": "https://github.com/CarterSnich/firefox-xtra-compact" + }, + { + "title": "Aero Firefox", + "link": "https://github.com/SandTechStuff/AeroFirefox", + "description": "Brings the Windows 7 titlebar buttons to modern versions of Firefox", + "image": "assets/img/themes/aeroFirefox.webp", + "tags": [ + "aero", + "dark", + "light", + "lightweight", + "windows7", + "minimal" + ], + "repository": "https://github.com/SandTechStuff/AeroFirefox" + }, + { + "title": "PotatoFox", + "link": "https://codeberg.org/awwpotato/PotatoFox", + "description": "A compact and minimal firefox theme using Sidebery", + "image": "assets/img/themes/PotatoFox.webp", + "tags": [ + "minimal", + "compact", + "vertical tabs", + "Sidebery", + "arc" + ], + "repository": "https://codeberg.org/awwpotato/PotatoFox" + }, + { + "title": "Minimal-Arc", + "link": "https://github.com/zayihu/Minimal-Arc", + "description": "Minimal light Firefox theme with Arc like design with vertical tabs", + "image": "assets/img/themes/minimal_arc.webp", + "tags": [ + "minimal", + "compact", + "vertical-tabs", + "Sidebery", + "light", + "Arc Browser" + ], + "repository": "https://github.com/zayihu/Minimal-Arc" + }, + { + "title": "SnowFox", + "link": "https://github.com/naveensagar765/SnowFox", + "description": "Modern blue glass theme with side bookmark bar", + "image": "assets/img/themes/snowfox.webp", + "tags": [ + "moder", + "blue", + "side-bookmark-bar", + "home page" + ], + "repository": "https://github.com/naveensagar765/SnowFox" + }, + { + "title": "AnimatedFox", + "link": "https://github.com/RemyIsCool/AnimatedFox", + "description": "A minimal Firefox/LibreWolf theme with satisfying animations and a hidden URL bar.", + "image": "assets/img/themes/animatedfox.webp", + "tags": [ + "RemyIsCool", + "dark", + "minimal", + "hidden url bar", + "animations" + ], + "repository": "https://github.com/RemyIsCool/AnimatedFox" + }, + { + "title": "Quietfox Reborn", + "link": "https://github.com/TheGITofTeo997/quietfoxReborn", + "description": "Resurrecting a very Clean Firefox userChrome Mod ", + "image": "assets/img/themes/20053home.webp", + "tags": [ + "Teo", + "sleek", + "minimal", + "quiet" + ], + "repository": "https://github.com/TheGITofTeo997/quietfoxReborn" + }, + { + "title": "GlassyFox", + "link": "https://github.com/AnhNguyenlost13/GlassyFox", + "description": "Keeps the original new tab page layout while making it look as glassy as possible.", + "image": "assets/img/themes/glassyfox.webp", + "tags": [ + "blur", + "AnhNguyenlost13" + ], + "repository": "https://github.com/AnhNguyenlost13/GlassyFox" + }, + { + "title": "98/95fox Xtra Compact", + "link": "https://github.com/programneer/Firefox-98-Xtra-Compact", + "description": "The mix of nostalgia and compact.", + "image": "assets/img/themes/ff95xtracompact.webp", + "tags": [ + "Programneer", + "Light", + "Retro", + "Chicago", + "98", + "95", + "compact" + ], + "repository": "https://github.com/programneer/Firefox-98-Xtra-Compact" + }, + { + "title": "FireFox OneLine Navbar", + "link": "https://github.com/FawazBinSaleem/FireFoxOneLinerCSS", + "description": "A compact oneliner navbar css theme.", + "image": "assets/img/themes/fireFoxOneLinerCSS.webp", + "tags": [ + "oneline", + "black color", + "amoled", + "oneliner", + "navbar", + "One Line", + "compact" + ], + "repository": "https://github.com/FawazBinSaleem/FireFoxOneLinerCSS" + }, + { + "title": "Monochrome Neubrutalism Firefox Simple", + "link": "https://github.com/Kaskapa/Monochrome-Neubrutalism-Firefox-Theme", + "description": "A simple light theme I made to explore the world of Firefox theming.", + "image": "assets/img/themes/monochromeNeubrutalism.webp", + "tags": [ + "light", + "neubrutalislm", + "monochrome", + "simple", + "Kaskapa" + ], + "repository": "https://github.com/Kaskapa/Monochrome-Neubrutalism-Firefox-Theme" + }, + { + "title": "minimalistest oneliner", + "link": "https://github.com/yari-dog/minimalistest-oneliner-librewolf", + "description": "buttons are for nerds.", + "image": "assets/img/themes/minimalist-oneliner.webp", + "tags": [ + "simple", + "oneliner", + "oneline", + "compact" + ], + "repository": "https://github.com/yari-dog/minimalistest-oneliner-librewolf" + }, + { + "title": "Arc UI", + "link": "https://github.com/dxdotdev/arc-ui", + "description": "Make your Firefox like the Arc Browser.", + "image": "assets/img/themes/29957ui.webp", + "tags": [ + "dxdotdev", + "arc browser", + "compact", + "modern" + ], + "repository": "https://github.com/dxdotdev/arc-ui" + }, + { + "title": "Material Fox Updated", + "link": "https://github.com/edelvarden/material-fox-updated", + "description": "🦊 Firefox user CSS theme looks similar to Chrome.", + "image": "assets/img/themes/material-fox-updated-preview.webp", + "tags": [ + "dark", + "light", + "rtl", + "customizable", + "material", + "material-design", + "refresh", + "modern", + "updated" + ], + "repository": "https://github.com/edelvarden/material-fox-updated" + } ] From e3c76dd05ccdd964d58ce97d3c64ff1925f531c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20F=2E=20=28BeyondMagic/koetemagie=29?= Date: Mon, 7 Oct 2024 10:36:19 -0300 Subject: [PATCH 07/23] fix(themes): remove deleted theme --- themes.json | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/themes.json b/themes.json index cc21eaa..01e4ffd 100644 --- a/themes.json +++ b/themes.json @@ -11,19 +11,6 @@ ], "repository": "https://github.com/birbkeks/Firefox-Titlebar-Button-Fix" }, - { - "title": "u/FffDtark's Theme", - "link": "https://github.com/Ikrom27/Firefox", - "description": "Oneline theme", - "image": "assets/img/themes/My_Firefox_theme_-_uFffDtark.webp", - "tags": [ - "dark", - "Ikrom27", - "centre", - "one-line" - ], - "repository": "https://github.com/Ikrom27/Firefox" - }, { "title": "Sweet_Pop!", "link": "https://github.com/PROxZIMA/Sweet-Pop", From d346171d62fe595f03bbf2c0131dc9792a826834 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20F=2E=20=28BeyondMagic/koetemagie=29?= Date: Mon, 7 Oct 2024 11:37:10 -0300 Subject: [PATCH 08/23] feat(sorting): fix cloning to allow any source --- scripts/sort_themes.nu | 83 ++++++++++++++++++++++++++---------------- 1 file changed, 52 insertions(+), 31 deletions(-) diff --git a/scripts/sort_themes.nu b/scripts/sort_themes.nu index ea7d900..5c93b34 100644 --- a/scripts/sort_themes.nu +++ b/scripts/sort_themes.nu @@ -18,8 +18,12 @@ export def github [ } } - let item = http get $"https://api.github.com/repos/($repo.owner)/($repo.name)" --headers $headers - + let item = try { + http get $"https://api.github.com/repos/($repo.owner)/($repo.name)" --headers $headers + } catch { + return null + } + { pushed_at: $item.pushed_at stargazers_count: ($item.stargazers_count | into int) @@ -41,7 +45,11 @@ export def gitlab [ } } - let item = http get $"https://gitlab.com/api/v4/projects/($repo.owner)%2F($repo.name)" --headers $headers + let item = try { + http get $"https://gitlab.com/api/v4/projects/($repo.owner)%2F($repo.name)" --headers $headers + } catch { + return null + } { pushed_at: $item.last_activity_at @@ -64,7 +72,11 @@ export def codeberg [ } } - let item = http get $"https://codeberg.org/api/v1/repos/($repo.owner)/($repo.name)" --headers $headers + let item = try { + http get $"https://codeberg.org/api/v1/repos/($repo.owner)/($repo.name)" --headers $headers + } catch { + return null + } { pushed_at: $item.updated_at @@ -75,6 +87,7 @@ export def codeberg [ # In case of not having API, clone and get information yourself. export def clone [ + link: string # Git link of the repository. --temp: string = '/tmp/firefoxcss-store/' # Temporary folder to save themes. ]: record -> record { @@ -83,36 +96,25 @@ export def clone [ let repo = $in let folder = $temp | path join $repo.name - let success = if ($folder | path exists) { + if ($folder | path exists) { cd $folder ^git pull - - true } else { - let link = 'git@github.com:' + $repo.owner + '/' + $repo.name + '.git' - let clone_status = ^git clone $link $folder | complete | get exit_code # Could not clone the repository for unknown reasons. if $clone_status != 0 { - print --stderr $"Could not clone '($link)'." - false + return null } - - cd $folder - true + cd $folder } - let pushed_at = if $success { - ^git show --quiet --date='format-local:%Y-%m-%dT%H:%M:%SZ' --format="%cd" - } else { - "" - } + let pushed_at = ^git show --quiet --date='format-local:%Y-%m-%dT%H:%M:%SZ' --format="%cd" { pushed_at: $pushed_at @@ -125,18 +127,19 @@ export def clone [ def parse_link []: string -> record { let data = $in | split row '/' - | last 2 { - owner: $data.0 - name: $data.1 + owner: $data.3 + name: $data.4 } } # Get extra information from themes and save it. export def main [ - token: string # API Token. - --delay: duration = 1sec # Delay between API calls. + --github: string # API Token for Github. + --gitlab: string # API Token for Gitlab. + --codeberg: string # API Token for Codeberg. + --delay: duration = 2sec # Delay between API calls. --source: string = "../themes.json" # Themes data. --output: string = "./themes.json" # New data with themes. --timezone: string = "UTC0" # Timezone for git calls. @@ -149,22 +152,40 @@ export def main [ let link = $item.repository + print $"Cloning ($link)." + let info = if ($link | str contains 'github') { sleep $delay - $link | parse_link | github $token + $link | parse_link | github $github } else if ($link | str contains 'gitlab') { sleep $delay - $link | parse_link | gitlab $token + $link | parse_link | gitlab $gitlab } else if ($link | str contains 'codeberg') { sleep $delay - $link | parse_link | codeberg $token + $link | parse_link | codeberg $codeberg } else { - $link | parse_link | clone + print "Using git cloning." + $link | parse_link | clone $link } - { - ...$item - ...$info + if ($info | is-empty) { + print $"Could not clone this repository." + print "" + } else { + print "" + { + ...$item + ...$info + } } } + + $data | save --force $output + + print "Replace the themes in the source directory? If no, will output the themes as JSON instead. To confirm, type either the word 'yes' or character 'y'." + let ask = input "Answer: " | str downcase + + if $ask == 'y' or $ask == 'yes' { + mv --force $output $source + } } From 8da459ec180b410408e9428f33b7abcbbe3a4ee1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20F=2E=20=28BeyondMagic/koetemagie=29?= Date: Mon, 7 Oct 2024 11:43:28 -0300 Subject: [PATCH 09/23] themes.json: add new info for sorting --- themes.json | 3871 ++++++++++++++++++++++++++++----------------------- 1 file changed, 2102 insertions(+), 1769 deletions(-) diff --git a/themes.json b/themes.json index 01e4ffd..d5742a5 100644 --- a/themes.json +++ b/themes.json @@ -1,1771 +1,2104 @@ [ - { - "title": "Titlebar-Button-Fix", - "link": "https://github.com/birbkeks/Firefox-Titlebar-Button-Fix", - "description": "This theme fixes titlebar min max close buttons for Firefox in linux. ", - "image": "assets/img/themes/titlebarfix.webp", - "tags": [ - "birbkeks", - "fix", - "titlebar" - ], - "repository": "https://github.com/birbkeks/Firefox-Titlebar-Button-Fix" - }, - { - "title": "Sweet_Pop!", - "link": "https://github.com/PROxZIMA/Sweet-Pop", - "description": "Sweet_Pop! Minimalist oneliner theme for Firefox perfectly matching Sweet Dark.", - "image": "assets/img/themes/sweetpop.webp", - "tags": [ - "dark", - "light", - "modern", - "blue", - "auto-hide", - "floating bar", - "PROxZIMA" - ], - "repository": "https://github.com/PROxZIMA/Sweet-Pop" - }, - { - "title": "FirefoxCSS-Plus", - "link": "https://github.com/c2oc/FirefoxCSS-Plus", - "description": "FirefoxCSS+ is based on h4wwk3ye release (https://github.com/h4wwk3ye/firefoxCSS), MaterialFox (https://github.com/muckSponge/MaterialFox) and FlyingFox (https://github.com/akshat46/FlyingFox).", - "image": "assets/img/themes/firefoxcssplus.webp", - "tags": [ - "dark", - "archived", - "c2oc" - ], - "repository": "https://github.com/c2oc/FirefoxCSS-Plus" - }, - { - "title": "minimalFOX", - "link": "https://github.com/marmmaz/FirefoxCSS", - "description": "A compact & minimal Firefox theme built for macOS.", - "image": "assets/img/themes/minimalfox.webp", - "tags": [ - "dark", - "macos", - "marmazz", - "auto-hide", - "floating bar", - "compact" - ], - "repository": "https://github.com/marmmaz/FirefoxCSS" - }, - { - "title": "FirefoxCss", - "link": "https://github.com/h4wwk3ye/firefoxCSS", - "description": "Custom userChrome.css for firefox based on Material Fox and Flying Fox with few small changes.", - "image": "assets/img/themes/firefoxcss.webp", - "tags": [ - "light", - "h4wwk3ye", - "Tree Style Tab", - "sidebar" - ], - "repository": "https://github.com/h4wwk3ye/firefoxCSS" - }, - { - "title": "Simplify Silver Peach for Firefox", - "link": "https://github.com/CristianDragos/FirefoxThemes/tree/master/Simplify%20Silver%20Peach", - "description": "A minimal Firefox Theme for those who would like to properly enjoy my Simplify 10 Silver Peach - Windows 10 Themes\n Compatibility: V89+", - "image": "assets/img/themes/simplify_silver_peach_for_firefox_preview.webp", - "tags": [ - "light", - "pastel", - "CristianDragos", - "rounded" - ], - "repository": "https://github.com/CristianDragos/FirefoxThemes/tree/master/Simplify%20Silver%20Peach" - }, - { - "title": "Simplify Darkish for Firefox", - "link": "https://github.com/CristianDragos/FirefoxThemes/tree/master/Simplify%20Darkish", - "description": "A minimal Firefox Theme for those who would like to properly enjoy my Simplify 10 Darkish - Windows 10 Themes\n Compatibility: V89+", - "image": "assets/img/themes/simplify_darkish_for_firefox_preview.webp", - "tags": [ - "dark", - "CristianDragos", - "windows 10" - ], - "repository": "https://github.com/CristianDragos/FirefoxThemes/tree/master/Simplify%20Darkish" - }, - { - "title": "SimpleFox", - "link": "https://github.com/migueravila/Simplefox", - "description": "🦊 A Userstyle theme for Firefox minimalist and Keyboard centered.", - "image": "assets/img/themes/simplefox.webp", - "tags": [ - "migueravila", - "dark", - "minimal", - "keyboard", - "compact", - "linux" - ], - "repository": "https://github.com/migueravila/Simplefox" - }, - { - "title": "blurredfox", - "link": "https://github.com/manilarome/blurredfox", - "description": "A modern Firefox CSS Theme", - "image": "assets/img/themes/blurred.webp", - "tags": [ - "manilarome", - "dark", - "light", - "blur", - "linux" - ], - "repository": "https://github.com/manilarome/blurredfox" - }, - { - "title": "Firefox Review", - "link": "https://github.com/fellowish/firefox-review", - "description": "Firefox Review is a CSS redesign of the browser, changing the look of Firefox to match the color scheme and design language of Firefox Preview, the previous name of Mozilla's new mobile app.", - "image": "assets/img/themes/firefoxreview.webp", - "tags": [ - "dark", - "light", - "fellowish", - "archived", - "colorscheme" - ], - "repository": "https://github.com/fellowish/firefox-review" - }, - { - "title": "nord-firefox", - "link": "https://github.com/daaniiieel/nord-firefox", - "description": "Firefox userChrome.css theme, based on https://github.com/AnubisZ9/Global-Dark-Nordic-theme/.", - "image": "assets/img/themes/nord.webp", - "tags": [ - "nord", - "daaniiieel", - "colorscheme" - ], - "repository": "https://github.com/daaniiieel/nord-firefox" - }, - { - "title": "not-holar's theme", - "link": "https://github.com/not-holar/my_firefox_theme", - "description": "Welcome to the repo for my Firefox theme, a theme that aims to look nice and clean while not compromising functionality.\n Compatibility: V89+", - "image": "assets/img/themes/MyFirefoxThemenotholar.webp", - "tags": [ - "not-holar", - "stylus", - "Tree Style", - "dark" - ], - "repository": "https://github.com/not-holar/my_firefox_theme" - }, - { - "title": "Firefox-Mod-Blur", - "link": "https://github.com/datguypiko/Firefox-Mod-Blur", - "description": "Tested 84.0.1 Windows 10 / Default Dark Theme ", - "image": "assets/img/themes/firefoxmodblur.webp", - "tags": [ - "blur", - "datguypiko", - "dark", - "centre", - "rounded" - ], - "repository": "https://github.com/datguypiko/Firefox-Mod-Blur" - }, - { - "title": "quietfox", - "link": "https://github.com/coekuss/quietfox", - "description": "This userChrome mod was created to make the Firefox UI cleaner and more modern without sacrificing any of its original features. You can still use themes, and you can still use Compact Mode and Touch Mode. You can pretty much forget that you have a mod installed, it works quietly in the background.", - "image": "assets/img/themes/quietfox.webp", - "tags": [ - "coekuss", - "toolkit", - "simple" - ], - "repository": "https://github.com/coekuss/quietfox" - }, - { - "title": "minimal-functional-fox", - "link": "https://github.com/mut-ex/minimal-functional-fox", - "description": "A minimal, yet functional configuration for Firefox!", - "image": "assets/img/themes/minimalfuntionalfox.webp", - "tags": [ - "centre", - "minimal", - "dark", - "animations" - ], - "repository": "https://github.com/mut-ex/minimal-functional-fox" - }, - { - "title": "MaterialFox", - "link": "https://github.com/muckSponge/MaterialFox", - "description": "A Material Design-inspired userChrome.css theme for Firefox", - "image": "assets/img/themes/materialfox.webp", - "tags": [ - "muckSponge", - "dark", - "light", - "colorscheme" - ], - "repository": "https://github.com/muckSponge/MaterialFox" - }, - { - "title": "Firefox UWP Style", - "link": "https://github.com/Guerra24/Firefox-UWP-Style", - "description": "A theme that follows UWP styling. Featuring the original MDL2 design and Sun Valley refresh", - "image": "assets/img/themes/firefoxuwpstyle.webp", - "tags": [ - "Guerra24", - "dark", - "colorscheme" - ], - "repository": "https://github.com/Guerra24/Firefox-UWP-Style" - }, - { - "title": "Almost Dark Proton", - "link": "https://github.com/Neikon/Almost-Dark-Grey-Colorfull-Proton---FirefoxCSS-Themes", - "description": "Based on Simplify Darkish with few small changes based too in Mod Blur theme. It is intended to be used together with the new firefox elements with the new design called Proton, as the new tab page design. \n Compatibility: V89+", - "image": "assets/img/themes/almostdarkproton.webp", - "tags": [ - "centre", - "dark", - "Neikon", - "icon tab bar" - ], - "repository": "https://github.com/Neikon/Almost-Dark-Grey-Colorfull-Proton---FirefoxCSS-Themes" - }, - { - "title": "Monochrome Tree", - "link": "https://github.com/MatejKafka/FirefoxTheme", - "description": "A custom minimalist theme for Firefox with Tree Style Tab support", - "image": "assets/img/themes/19.webp", - "tags": [ - "dark", - "light", - "MatejKafka", - "monochrome", - "Tree Style", - "one-line" - ], - "repository": "https://github.com/MatejKafka/FirefoxTheme" - }, - { - "title": "Flying Fox", - "link": "https://github.com/akshat46/FlyingFox", - "description": "An opinionated set of configurations for firefox with Material Fox, github-moonlight userstyle", - "image": "assets/img/themes/flying.webp", - "tags": [ - "material", - "moonlight", - "akshat46" - ], - "repository": "https://github.com/akshat46/FlyingFox" - }, - { - "title": "FirefoxW10ContextMenus", - "link": "https://github.com/M1ch431/FirefoxW10ContextMenus", - "description": "Emulates the Windows 10 context menus in Firefox.", - "image": "assets/img/themes/20.webp", - "tags": [ - "toolkit", - "context", - "menu", - "windows" - ], - "repository": "https://github.com/M1ch431/FirefoxW10ContextMenus" - }, - { - "title": "EdgeFox", - "link": "https://github.com/23Bluemaster23/EdgeFox", - "description": "Is a userchrome that imitates (or attempts to imitate) the style of Microsoft's Edge Chromiun browser.", - "image": "assets/img/themes/edgefox.webp", - "tags": [ - "windows", - "edge" - ], - "repository": "https://github.com/23Bluemaster23/EdgeFox" - }, - { - "title": "Firefox i3wm theme", - "link": "https://github.com/aadilayub/firefox-i3wm-theme", - "description": "A theme for Firefox meant to emulate qutebrowser and integrate with the i3 window manager.", - "image": "assets/img/themes/ff-i3wm.webp", - "tags": [ - "qt", - "qute", - "qutebrowser", - "i3" - ], - "repository": "https://github.com/aadilayub/firefox-i3wm-theme" - }, - { - "title": "Edge-Frfox", - "link": "https://github.com/bmFtZQ/Edge-FrFox", - "description": "A Firefox userChrome.css theme that aims to recreate the look and feel of Microsoft Edge.", - "image": "assets/img/themes/Edge-Frfox.webp", - "tags": [ - "light", - "dark", - "fluent", - "microsoft", - "bmFtZQ", - "windows", - "mac", - "linux" - ], - "repository": "https://github.com/bmFtZQ/Edge-FrFox" - }, - { - "title": "NicoFox", - "link": "https://github.com/SlowNicoFish/NicoFox", - "description": "A simple rounded theme", - "image": "assets/img/themes/22381112138598-fe8cd400-8bd1-11eb-8eed-edcca2c689d8.webp", - "tags": [ - "rounded", - "minimal" - ], - "repository": "https://github.com/SlowNicoFish/NicoFox" - }, - { - "title": "Elegant Nord Theme", - "link": "https://github.com/rafamadriz/Firefox-Elegant-NordTheme", - "description": "Elegant Nord Theme with material design", - "image": "assets/img/themes/Elegant-Nord-Theme.webp", - "tags": [ - "nord", - "material" - ], - "repository": "https://github.com/rafamadriz/Firefox-Elegant-NordTheme" - }, - { - "title": "Moonlight 🌌", - "link": "https://github.com/eduardhojbota/moonlight-userChrome", - "description": "A dark userstyle for Firefox inspired by moonlight-vscode-theme and github-moonlight", - "image": "assets/img/themes/moonlight.webp", - "tags": [ - "dark" - ], - "repository": "https://github.com/eduardhojbota/moonlight-userChrome" - }, - { - "title": "Firefox Halo", - "link": "https://github.com/seirin-blu/Firefox-Halo", - "description": "A mininmalist Firefox theme with a lot of about: pages edited to act as resources. Updates about every month.", - "image": "assets/img/themes/firefoxhalo.webp", - "tags": [ - "toolkit" - ], - "repository": "https://github.com/seirin-blu/Firefox-Halo" - }, - { - "title": "Pseudo-fullscreen Firefox, Sidebery and YouTube", - "link": "https://github.com/ongots/pseudo-fullscreen-firefox", - "description": "\n Compatibility: V89+", - "image": "assets/img/themes/always-fullscreen-firefox.webp", - "tags": [ - "toolkit", - "sidebar" - ], - "repository": "https://github.com/ongots/pseudo-fullscreen-firefox" - }, - { - "title": "WhiteSur Safari style for Firefox", - "link": "https://github.com/adamxweb/WhiteSurFirefoxThemeMacOS", - "description": "Make your Firefox look like Safari. MacOS Big Sur inspired theme for Firefox on MacOS & Windows.\n Compatibility: V89+", - "image": "assets/img/themes/whitesur.webp", - "tags": [ - "apple", - "mac", - "safari" - ], - "repository": "https://github.com/adamxweb/WhiteSurFirefoxThemeMacOS" - }, - { - "title": "Alpen Blue to Firefox CSS", - "link": "https://github.com/Godiesc/AlpenBlue", - "description": "Theme to Blue and Alpenglow lovers\n Compatibility: V89+", - "image": "assets/img/themes/alpenblue.webp", - "tags": [ - "aplenblue", - "alpenglow", - "Godiesc" - ], - "repository": "https://github.com/Godiesc/AlpenBlue" - }, - { - "title": "duskFox", - "link": "https://github.com/aminomancer/uc.css.js", - "description": "A dark indigo theme integrated with extensive functional and visual scripts.\n Compatibility: V89+", - "image": "assets/img/themes/duskfox.webp", - "tags": [ - "dark", - "dusk" - ], - "repository": "https://github.com/aminomancer/uc.css.js" - }, - { - "title": "Compact Mode to Firefox Css", - "link": "https://github.com/Godiesc/compactmodefirefoxcss", - "description": "Theme to Make Firefox Compact and keep it's Beauty\n Compatibility: V89+", - "image": "assets/img/themes/splashcompact.webp", - "tags": [ - "toolkit", - "Godiesc" - ], - "repository": "https://github.com/Godiesc/compactmodefirefoxcss" - }, - { - "title": "DiamondFucsia Theme to Firefox Css", - "link": "https://github.com/Godiesc/DiamondFucsia", - "description": "Dark Theme to Firefox with Fuchsia Colors\n Compatibility: V89+", - "image": "assets/img/themes/diamondfucsia.webp", - "tags": [ - "Godiesc" - ], - "repository": "https://github.com/Godiesc/DiamondFucsia" - }, - { - "title": "Australis like tabs in Proton UI", - "link": "https://github.com/sagars007/Australis-like-tabs-FF-ProtonUI-changes", - "description": "Changes to make the new proton UI redesign in Firefox better; including changes to tabs, more compact-compact mode, proton gradient accents in elements and much more\n Compatibility: V89+", - "image": "assets/img/themes/custom_australistabs_protonUI.webp", - "tags": [ - "compact" - ], - "repository": "https://github.com/sagars007/Australis-like-tabs-FF-ProtonUI-changes" - }, - { - "title": "Firefox vertical tabs (TST) UI", - "link": "https://github.com/sagars007/Firefox-vertical-tabs-customUI", - "description": "Vertical tabs in Firefox using tree style tabs. Vibrant tab selectors, full dark mode, titlebar text in nav-bar and much more.\n Compatibility: V89+", - "image": "assets/img/themes/compact_verticaltabs_view.webp", - "tags": [ - "sidebar", - "sidetab", - "tree" - ], - "repository": "https://github.com/sagars007/Firefox-vertical-tabs-customUI" - }, - { - "title": "Lepton(Proton Fix) in Proton UI", - "link": "https://github.com/black7375/Firefox-UI-Fix", - "description": "🦊 I respect proton UI and aim to fix it. Icons, Padding, Tab Design...\n Compatibility: V89+", - "image": "assets/img/themes/Lepton.webp", - "tags": [ - "" - ], - "repository": "https://github.com/black7375/Firefox-UI-Fix" - }, - { - "title": "Lepton's Photon-Styled in Proton UI", - "link": "https://github.com/black7375/Firefox-UI-Fix/tree/photon-style", - "description": "🦊 I tried to preserve Proton’s feeling while preserving Photon’s strengths. Icons, Padding, Tab Design...\n Compatibility: V89+", - "image": "assets/img/themes/Lepton-PhotonStyle.webp", - "tags": [ - "" - ], - "repository": "https://github.com/black7375/Firefox-UI-Fix/tree/photon-style" - }, - { - "title": "[Firefox 90+] RainFox", - "link": "https://github.com/1280px/rainfox", - "description": "Restores Photon's look and feel but keeps Proton's clarity with some improvements and new features. \n Compatibility: V89+", - "image": "assets/img/themes/rainfox.webp", - "tags": [ - "" - ], - "repository": "https://github.com/1280px/rainfox" - }, - { - "title": "Gradient rounded tabs redesign and ultra compact mode [Proton UI]", - "link": "https://github.com/sagars007/Proton-UI-connected-rounded-tabs-firefox-css", - "description": "Firefox Proton UI minimal changes with nav-bar-connected rounded tabs, reduced compact mode, nightly color gradient accents etc.. \n Compatibility: V89+", - "image": "assets/img/themes/proton-ui-gradient-rounded-tabs-display.webp", - "tags": [ - "" - ], - "repository": "https://github.com/sagars007/Proton-UI-connected-rounded-tabs-firefox-css" - }, - { - "title": "Technetium", - "link": "https://github.com/edo0/Technetium", - "description": "A focused approach to taming the new Firefox Proton interface, restituting some of the beloved elements retired alongside the old Photon UI - menu icons and much more \n Compatibility: V89+", - "image": "assets/img/themes/Technetium.webp", - "tags": [ - "edo0", - "light", - "dark", - "rounded", - "squared", - "compact", - "v89" - ], - "repository": "https://github.com/edo0/Technetium" - }, - { - "title": "Chameleons-Beauty to Firefox CSS", - "link": "https://github.com/Godiesc/Chameleons-Beauty", - "description": "Adaptive Theme to Firefox Themes \n Compatibility: V89+", - "image": "assets/img/themes/Chameleons-Beauty.webp", - "tags": [ - "dark", - "Godiesc", - "colourful", - "dark", - "light", - "v89" - ], - "repository": "https://github.com/Godiesc/Chameleons-Beauty" - }, - { - "title": "pro-fox: enhanced firefox proton", - "link": "https://github.com/xmansyx/Pro-Fox", - "description": "a proton based theme to make it even better \n Compatibility: V89+", - "image": "assets/img/themes/pro-fox.webp", - "tags": [ - "xmansyx", - "centered", - "rounded", - "dark", - "light", - "bigger", - "v89" - ], - "repository": "https://github.com/xmansyx/Pro-Fox" - }, - { - "title": "MartinFox", - "link": "https://github.com/arp242/MartinFox", - "description": "Really simple userChrome.css to make the active tab stand out more; 61 lines. \n Compatibility: V89+", - "image": "assets/img/themes/martinfox.webp", - "tags": [ - "arp242", - "pure", - "compact", - "v91" - ], - "repository": "https://github.com/arp242/MartinFox" - }, - { - "title": "ProtoVibrant", - "link": "https://github.com/bpwned/protovibrant", - "description": "Add macOS vibrancy to the Proton titlebar. Supports dark and light mode. \n Compatibility: V89+", - "image": "assets/img/themes/protovibrant.webp", - "tags": [ - "vibrancy", - "macos", - "pure", - "transparency", - "bpwned", - "v89" - ], - "repository": "https://github.com/bpwned/protovibrant" - }, - { - "title": "OnelineProton", - "link": "https://github.com/lr-tech/OnelineProton", - "description": "An oneline userChrome.css theme for Firefox, which aims to keep the Proton experience \n Compatibility: V89+", - "image": "assets/img/themes/onelineproton.webp", - "tags": [ - "one-line", - "proton", - "v89", - "minimal", - "dark", - "light", - "lr-tech", - "v89" - ], - "repository": "https://github.com/lr-tech/OnelineProton" - }, - { - "title": "Firefox Compact Mode", - "link": "https://github.com/dannycolin/fx-compact-mode", - "description": "A compact mode that follows Firefox 89 (known as Proton) design system while using the same vertical space as the compact mode in Firefox 88 (known as Photon). \n Compatibility: V91+", - "image": "assets/img/themes/fx-compact-mode.webp", - "tags": [ - "dannycolin", - "compact", - "proton", - "photon", - "v91", - "pure" - ], - "repository": "https://github.com/dannycolin/fx-compact-mode" - }, - { - "title": "GruvFox by Alfarex2019", - "link": "https://github.com/FirefoxCSSThemers/GruvFox", - "description": "GruvFox is a remix of dpcdpc11's theme, featuring the gruvbox color palette.\n Compatibility: V91+", - "image": "assets/img/themes/20930130265614-a7559ea7-70fd-44f9-a790-34c5c0e31493.webp", - "tags": [ - "alfarexguy2019", - "gruv", - "dark", - "pure", - "v91" - ], - "repository": "https://github.com/FirefoxCSSThemers/GruvFox" - }, - { - "title": "Proton Square", - "link": "https://github.com/leadweedy/Firefox-Proton-Square", - "description": "Recreates the feel of Quantum with its squared tabs and menus. No rounded corners to be seen.\n Compatibility: V91+", - "image": "assets/img/themes//24535ff_protonbutquantum.webp", - "tags": [ - "squared", - "v91", - "pure", - "quantum", - "leadweedy" - ], - "repository": "https://github.com/leadweedy/Firefox-Proton-Square" - }, - { - "title": "Natura for Firefox", - "link": "https://github.com/firefoxcssthemers/natura-for-firefox", - "description": "Nature theme for Firefox \n Compatibility: V91+", - "image": "assets/img/themes/natura.webp", - "tags": [ - "green", - "yellow", - "firefoxcssthemers", - "alfarexguy2019", - "v91", - "pure" - ], - "repository": "https://github.com/firefoxcssthemers/natura-for-firefox" - }, - { - "title": "MacOSVibrant", - "link": "https://github.com/Tnings/MacosVibrant", - "description": "A theme that uses MacOS Vibrancy and is styled after other Apple Apps \n Compatibility: V91+", - "image": "assets/img/themes/MacOSVibrant.webp", - "tags": [ - "Tnings", - "transparency", - "dark", - "rounded", - "v91" - ], - "repository": "https://github.com/Tnings/MacosVibrant" - }, - { - "title": "Cascade", - "link": "https://github.com/andreasgrafen/cascade", - "description": "A responsive \"One-Line\" theme based on SimpleFox for the new ProtonUI. \n Compatibility: V91+", - "image": "assets/img/themes/cascade.webp", - "tags": [ - "andreasgrafen", - "minial", - "oneline", - "responsive", - "one-line", - "proton", - "light", - "dark", - "v91" - ], - "repository": "https://github.com/andreasgrafen/cascade" - }, - { - "title": "Firefox GNOME theme", - "link": "https://github.com/rafaelmardojai/firefox-gnome-theme", - "description": "A bunch of CSS code to make Firefox look closer to GNOME's native apps. \n Compatibility: V91+", - "image": "assets/img/themes/firefox-gnome-theme.webp", - "tags": [ - "rafaelmardojai", - "gnome", - "v91", - "rounded", - "light", - "dark", - "v91" - ], - "repository": "https://github.com/rafaelmardojai/firefox-gnome-theme" - }, - { - "title": "PretoFox", - "link": "https://github.com/alfarexguy2019/pretofox", - "description": "A Black n White AMOLED theme for Firefox, inspired by the Preto color scheme. \n Compatibility: V91+", - "image": "assets/img/themes/PretoFox.webp", - "tags": [ - "alfarexguy2019", - "black", - "white", - "dark", - "light", - "v91" - ], - "repository": "https://github.com/alfarexguy2019/pretofox" - }, - { - "title": "Elementary OS Odin Firefox theme", - "link": "https://github.com/Zonnev/elementaryos-firefox-theme", - "description": "This theme supports all the window buttons layouts from Tweaks and it blends into the elementary OS Odin user interface. \n Compatibility: V91+", - "image": "assets/img/themes/firefox-eos6-theme.webp", - "tags": [ - "Zonnev", - "elementary-OS", - "OS", - "dark", - "light" - ], - "repository": "https://github.com/Zonnev/elementaryos-firefox-theme" - }, - { - "title": "Oneliner Deluxe", - "link": "https://github.com/Doosty/Oneliner-Deluxe", - "description": "Minimal, customizable and theme compatible \n Compatibility: V91+", - "image": "assets/img/themes/Oneliner_Deluxe.webp", - "tags": [ - "one-line", - "Doosty", - "v91" - ], - "repository": "https://github.com/Doosty/Oneliner-Deluxe" - }, - { - "title": "Simple Oneliner", - "link": "https://github.com/hakan-demirli/Firefox_Custom_CSS", - "description": "A simple theme to maximize the vertical space of your monitor \n Compatibility: V91+", - "image": "assets/img/themes/Simple_Oneliner.webp", - "tags": [ - "Sidebery", - "dark", - "light", - "pdf", - "one-line", - "hakan-demirli", - "v91" - ], - "repository": "https://github.com/hakan-demirli/Firefox_Custom_CSS" - }, - { - "title": "GentleFox", - "link": "https://github.com/alfarexguy2019/gentlefox", - "description": "A Firefox theme, which features gentle curves, transparency and a minimal interface. \n Compatibility: V91+", - "image": "assets/img/themes/GentleFox.webp", - "tags": [ - "alfarexguy2019", - "blur", - "transparency", - "rounded", - "dark", - "light" - ], - "repository": "https://github.com/alfarexguy2019/gentlefox" - }, - { - "title": "Clean and Transparent", - "link": "https://github.com/Filip-Sutkowy/blurclean-firefox-theme", - "description": "Clean theme with as much transparency as Firefox lets you do \n Compatibility: V91+", - "image": "assets/img/themes/Clean_and_Transparent.webp", - "tags": [ - "Filip-Sutkowy", - "blur", - "pure", - "dark", - "light", - "transparency", - "v91" - ], - "repository": "https://github.com/Filip-Sutkowy/blurclean-firefox-theme" - }, - { - "title": "Waterfall", - "link": "https://github.com/crambaud/waterfall", - "description": "A minimalist one line theme", - "image": "assets/img/themes/waterfall.webp", - "tags": [ - "crambaud", - "minimal", - "one-line", - "mouse" - ], - "repository": "https://github.com/crambaud/waterfall" - }, - { - "title": "Brave-Fox: The Reimagined Browser, Reimagined", - "link": "https://github.com/Soft-Bred/Brave-Fox", - "description": "Brave-Fox is a Firefox Theme that brings Brave's design elements into Firefox.", - "image": "assets/img/themes//184007ilia7199au71.webp", - "tags": [ - "brave", - "pure", - "js", - "javascript", - "Soft-Bred" - ], - "repository": "https://github.com/Soft-Bred/Brave-Fox" - }, - { - "title": "KeyFox- A minimal, keyboard centered OneLiner CSS.", - "link": "https://github.com/alfarexguy2019/KeyFox", - "description": "KeyFox is A simple, minimal OneLiner Keyboard-centered CSS for Firefox.", - "image": "assets/img/themes//13268136501706-accca691-b9c3-4841-acd7-6bb843d2f422.webp", - "tags": [ - "black", - "dark", - "white", - "one-line", - "alfarexguy2019" - ], - "repository": "https://github.com/alfarexguy2019/KeyFox" - }, - { - "title": "CompactFox", - "link": "https://github.com/Tnings/CompactFox", - "description": "A simple theme that compacts a lot of the UI elements", - "image": "assets/img/themes/CompactFoxPreview.webp", - "tags": [ - "compact", - "dark", - "light", - "Tnings", - "pure" - ], - "repository": "https://github.com/Tnings/CompactFox" - }, - { - "title": "AuroraFox- Auroral Firefox", - "link": "https://github.com/alfarexguy2019/aurora-fox", - "description": "AuroraFox is a clean rounded Firefox theme, made using CSS, to match with the trendy 'Aurora' Colour Palette.", - "image": "assets/img/themes//18328141609919-befbc7f3-5199-4672-9ba1-8551d2a4e5a1.webp", - "tags": [ - "dark", - "minimal", - "purple", - "alfarexguy2019" - ], - "repository": "https://github.com/alfarexguy2019/aurora-fox" - }, - { - "title": "starry-fox", - "link": "https://github.com/sagars007/starry-fox", - "description": "Firefox CSS stylesheets for the Dark Space Theme. Matching more UI elements with the theme.", - "image": "assets/img/themes/starry-fox-resize.webp", - "tags": [ - "sagars007", - "dark", - "compact", - "darkspace", - "stars", - "nightsky", - "gradient", - "windows11" - ], - "repository": "https://github.com/sagars007/starry-fox" - }, - { - "title": "Firefox-GX", - "link": "https://github.com/Godiesc/firefox-gx", - "description": "Firefox Theme to Opera-GX skin Lovers.", - "image": "assets/img/themes/firefox-gx.webp", - "tags": [ - "Godiesc", - "dark", - "opera", - "gx", - "theme", - "adapted", - "light", - "fuchsia" - ], - "repository": "https://github.com/Godiesc/firefox-gx" - }, - { - "title": "Elegant Fox", - "link": "https://github.com/ayushhroyy/elegantfox", - "description": "A firefox context menu theme and background wallpaper support with linux desktops being the main focus", - "image": "assets/img/themes/elegantfox.webp ", - "tags": [ - "ayushhroyy", - "nord", - "dark", - "light", - "adaptive" - ], - "repository": "https://github.com/ayushhroyy/elegantfox" - }, - { - "title": "TYH Fox", - "link": "https://github.com/tyuhao/TYHfox", - "description": "A firefox Theme CSS", - "image": "assets/img/themes/TYHFox.webp ", - "tags": [ - "TYHFox", - "dark", - "light", - "adaptive" - ], - "repository": "https://github.com/tyuhao/TYHfox" - }, - { - "title": "AutoColor-Minimal-Proton", - "link": "https://github.com/Neikon/AutoColor-Minimal-Proton", - "description": "Some settings that together with the vivaldifox add-on create a minimalist theme whose color is the color of the website you are visiting.", - "image": "assets/img/themes/AutoColor-Minimal-Proton.webp", - "tags": [ - "vivaldi", - "proton", - "minimal", - "autocolor", - "dark", - "light", - "borderless", - "adaptive", - "compact", - "one-line", - "neikon" - ], - "repository": "https://github.com/Neikon/AutoColor-Minimal-Proton" - }, - { - "title": "SimpleFox Feather Edition", - "link": "https://github.com/BlueFalconHD/SimpleFox-Feather/", - "description": "A fork of SimpleFox that uses feather icons!", - "image": "assets/img/themes/simplefox-feather.webp", - "tags": [ - "Simplefox", - "Fork", - "Icons", - "BlueFalconHD" - ], - "repository": "https://github.com/BlueFalconHD/SimpleFox-Feather/" - }, - { - "title": "gale for Firefox", - "link": "https://github.com/mgastonportillo/gale-for-ff", - "description": "My CSS files to use with Firefox and Sidebery", - "image": "assets/img/themes//8988rjy7uTd.webp", - "tags": [ - "gale", - "dark", - "minimalistic", - "adaptive", - "compact", - "autohide", - "sidebar" - ], - "repository": "https://github.com/mgastonportillo/gale-for-ff" - }, - { - "title": "Firefox-UWP-Style-Theme-Omars-Edit", - "link": "https://github.com/omarb737/Firefox-UWP-Style-Theme-Omars-Edit", - "description": "A minimalistic-retro theme based off the UWP interface", - "image": "assets/img/themes//321608U0N6E.webp", - "tags": [ - "omarb737", - "dark", - "retro", - "minimalist", - "UWP" - ], - "repository": "https://github.com/omarb737/Firefox-UWP-Style-Theme-Omars-Edit" - }, - { - "title": "Modoki Firefox", - "link": "https://github.com/soup-bowl/Modoki-Firefox", - "description": "Bringing the classic Modern Modoki Netscape theme back", - "image": "assets/img/themes/soupbowlmodoki.webp", - "tags": [ - "soup-bowl", - "classic", - "netscape", - "skeuomorphic", - "light", - "retro" - ], - "repository": "https://github.com/soup-bowl/Modoki-Firefox" - }, - { - "title": "TileFox", - "link": "https://github.com/davquar/tilefox", - "description": "A minimalistic Firefox userChrome.css that integrates well with tiling window managers like i3", - "image": "assets/img/themes/tilefox.webp", - "tags": [ - "davquar", - "light", - "dark", - "tile", - "tilefox", - "minimal", - "minimalistic", - "brutalist", - "compact", - "tiling", - "dwm", - "sway", - "i3", - "keyboard", - "linux" - ], - "repository": "https://github.com/davquar/tilefox" - }, - { - "title": "AestheticFox", - "link": "https://github.com/AidanMercer/AestheticFox", - "description": "A minamist and aesthetic userstyle theme for Firefox", - "image": "assets/img/themes/AestheticFox.webp", - "tags": [ - "clean", - "compact", - "aestheticfox", - "minimal", - "minimalistic", - "aesthetic" - ], - "repository": "https://github.com/AidanMercer/AestheticFox" - }, - { - "title": "Firefox 'Safari 15' Theme", - "link": "https://github.com/denizjcan/Firefox-Safari-15-Theme", - "description": "A Firefox theme that emulates the Safari 15 interface and new tab page.", - "image": "assets/img/themes//25940safari2.webp", - "tags": [ - "clean", - "compact", - "oneline", - "safari", - "ventura", - "aesthetic", - "mac", - "modern", - "compact", - "dark", - "denizjcan", - "safari" - ], - "repository": "https://github.com/denizjcan/Firefox-Safari-15-Theme" - }, - { - "title": "Firefox Onebar", - "link": "https://git.gay/freeplay/Firefox-Onebar", - "description": "A single bar for Firefox's UI.", - "image": "assets/img/themes/onebar.webp", - "tags": [ - "Freeplay", - "oneline", - "onebar", - "compact", - "minimal" - ], - "repository": "https://git.gay/freeplay/Firefox-Onebar" - }, - { - "title": "Dracula", - "link": "https://github.com/jannikbuscha/firefox-dracula", - "description": "A Firefox CSS Theme that aims to recreate the look and feel of the Chromium version of Microsoft Edge in the style of Dracula.", - "image": "assets/img/themes/dracula.webp", - "tags": [ - "edge", - "dark", - "microsoft", - "dracula" - ], - "repository": "https://github.com/jannikbuscha/firefox-dracula" - }, - { - "title": "rounded-fox", - "link": "https://github.com/Etesam913/rounded-fox", - "description": "A minimalist theme that uses animation to hide visual clutter.", - "image": "assets/img/themes/rounded_fox.webp", - "tags": [ - "clean", - "compact", - "minimalist", - "dark", - "light", - "animation" - ], - "repository": "https://github.com/Etesam913/rounded-fox" - }, - { - "title": "Three Rows Simple Compact Clean CSS", - "link": "https://github.com/hornster02/Firefox-Three-Rows-Simple-Compact-Clean-CSS", - "description": "A compact theme based on use multiple rows", - "image": "assets/img/themes/Three_Rows.webp", - "tags": [ - "simple", - "compact", - "minimalist", - "rows" - ], - "repository": "https://github.com/hornster02/Firefox-Three-Rows-Simple-Compact-Clean-CSS" - }, - { - "title": "Bali10050's theme", - "link": "https://github.com/Bali10050/FirefoxCSS", - "description": "A minimal looking oneliner, with modular code for easy editing", - "image": "assets/img/themes/Bali10050sPreview.webp", - "tags": [ - "Bali10050", - "oneline", - "light", - "dark", - "linux", - "windows", - "rounded", - "proton", - "responsive", - "minimalistic" - ], - "repository": "https://github.com/Bali10050/FirefoxCSS" - }, - { - "title": "ViceFox", - "link": "https://vicefox.vercel.app", - "description": "Don't ask why it's called 'ViceFox'", - "image": "assets/img/themes/ViceFox.webp", - "tags": [ - "clean", - "compact", - "safari", - "minimal", - "macos" - ], - "repository": "https://github.com/jtlw99/vicefox" - }, - { - "title": "DarkMatter", - "link": "https://github.com/BloodyHell619/Firefox-Theme-DarkMatter", - "description": "An intensively worked on, and highly customized dark theme made for Firefox Proton, stretching darkness into every corner of the browser and perfecting even the tiniest details ", - "image": "assets/img/themes/darkmatter.webp", - "tags": [ - "dark", - "Vertical", - "squared", - "proton" - ], - "repository": "https://github.com/BloodyHell619/Firefox-Theme-DarkMatter" - }, - { - "title": "Fox11", - "link": "https://github.com/Neikon/Fox11", - "description": "A Firefox CSS themes with auto-color, Mica, auto-hide nav-bar support. Inspired in firefox-one , Edge/Chrome restyle 2023.", - "image": "assets/img/themes/fox11.webp", - "tags": [ - "vivaldi", - "proton", - "minimal", - "autocolor", - "dark", - "light", - "mica", - "adaptive", - "transparency", - "neikon", - "one-line" - ], - "repository": "https://github.com/Neikon/Fox11" - }, - { - "title": "zap's cool photon theme", - "link": "https://github.com/zapSNH/zapsCoolPhotonTheme", - "description": "Party like it's Firefox 57-88!", - "image": "assets/img/themes/zaps-photon.webp", - "tags": [ - "photon", - "compact", - "squared", - "quantum" - ], - "repository": "https://github.com/zapSNH/zapsCoolPhotonTheme" - }, - { - "title": "Firefox-ONE", - "link": "https://github.com/Godiesc/firefox-one", - "description": "Dress Firefox with the Opera One skin", - "image": "assets/img/themes/firefox-one.webp", - "tags": [ - "Godiesc", - "opera", - "one", - "opera-one", - "firefox", - "firefox-one", - "theme", - "adaptive", - "tree", - "tabs" - ], - "repository": "https://github.com/Godiesc/firefox-one" - }, - { - "title": "Essence", - "link": "https://github.com/JarnotMaciej/Essence", - "description": "Compact, beautiful and minimalistic theme for the Firefox web browser.", - "image": "assets/img/themes/essence.webp", - "tags": [ - "compact", - "minimal", - "light", - "modern", - "oneline", - "rounded", - "clean" - ], - "repository": "https://github.com/JarnotMaciej/Essence" - }, - { - "title": "minimal-one-line-firefox", - "link": "https://github.com/ttntm/minimal-one-line-firefox", - "description": "A minimal oneliner, to minimizing the space used for url and tab bar", - "image": "assets/img/themes/molff.webp", - "tags": [ - "oneline", - "light", - "dark", - "squared", - "compact", - "minimalistic" - ], - "repository": "https://github.com/ttntm/minimal-one-line-firefox" - }, - { - "title": "RealFire", - "link": "https://github.com/Hakanbaban53/RealFire", - "description": "A minimalist animated oneliner theme for Firefox perfectly matching Real Dark", - "image": "assets/img/themes/RealFire-main.webp", - "tags": [ - "oneline", - "responsive", - "light", - "dark", - "animation", - "rounded", - "compact", - "minimalistic", - "black" - ], - "repository": "https://github.com/Hakanbaban53/RealFire" - }, - { - "title": "Firefox-Alpha", - "link": "https://github.com/Tagggar/Firefox-Alpha", - "description": "Super clear desktop browser with zero buttons and gesture controls", - "image": "assets/img/themes/Firefox-Alpha.webp", - "tags": [ - "Tagggar", - "alpha", - "responsive", - "light", - "dark", - "animation", - "rounded", - "compact", - "clear", - "clean", - "minimalistic", - "minimal", - "simple", - "gestures" - ], - "repository": "https://github.com/Tagggar/Firefox-Alpha" - }, - { - "title": "Dark Star", - "link": "https://gitlab.com/ivelieu/dark-star-firefox-skin", - "description": "A color-customizable, zero navbar padding skin, modified from Starry Fox", - "image": "assets/img/themes//11608darkstar_3.webp", - "tags": [ - "Ivelieu", - "dark", - "minimal", - "zeropadding", - "customizable" - ], - "repository": "https://gitlab.com/ivelieu/dark-star-firefox-skin" - }, - { - "title": "ImpossibleFox", - "link": "https://github.com/Naezr/ImpossibleFox", - "description": "A simple and fast one-line theme for Firefox inspired by Safari's compact layout. ", - "image": "assets/img/themes/ImpossibleFox.webp", - "tags": [ - "Naezr", - "dark", - "light", - "oneline" - ], - "repository": "https://github.com/Naezr/ImpossibleFox" - }, - { - "title": "SideFox", - "link": "https://github.com/rainbowflesh/Me-Personal-Firefox-Settup", - "description": "MS Edge style, sidebar, blur, and more.", - "image": "assets/img/themes/sidefox.webp", - "tags": [ - "sidebar", - "animated", - "simple", - "responsive", - "linux", - "windows", - "macos" - ], - "repository": "https://github.com/rainbowflesh/Me-Personal-Firefox-Settup" - }, - { - "title": "arcadia", - "link": "https://github.com/tyrohellion/arcadia", - "description": "Minimal Firefox theme and user.js focused on speed and design", - "image": "assets/img/themes/arcadia.webp", - "tags": [ - "tyro", - "dark", - "minimal", - "clean", - "hovercards", - "simple", - "compact", - "minimalistic" - ], - "repository": "https://github.com/tyrohellion/arcadia" - }, - { - "title": "Firefox Plus", - "link": "https://github.com/amnweb/firefox-plus", - "description": "Firefox Plus, CSS tweaks for Firefox ", - "image": "assets/img/themes//6299firefox-26-11-2023.webp", - "tags": [ - "firefox", - "firefox-customization", - "minimal", - "firefox-theme", - "dark" - ], - "repository": "https://github.com/amnweb/firefox-plus" - }, - { - "title": "Shina Fox", - "link": "https://github.com/Shina-SG/Shina-Fox", - "description": "A Minimal, Cozy, Vertical Optimized Firefox Theme", - "image": "assets/img/themes/Shina.webp", - "tags": [ - "Shina", - "Vertical", - "Sidebery", - "Minimal", - "Dark", - "Light", - "Adaptive" - ], - "repository": "https://github.com/Shina-SG/Shina-Fox" - }, - { - "title": "ArnimFox", - "link": "https://github.com/SecondMikasa/ArnimFox", - "description": "A Minimalist Dark Themed Firefox enabling vertical tabs support and modern URL Bar", - "image": "assets/img/themes/ArnimFox.webp", - "tags": [ - "Minimalistic", - "Vertical", - "Sidebery", - "Dark", - "Sidebar" - ], - "repository": "https://github.com/SecondMikasa/ArnimFox" - }, - { - "title": "Firefox Rounded Theme", - "link": "https://github.com/Khalylexe/Firefox-Rounded-Theme", - "description": "Just a Firefox CSS to make it more rounded ;) ", - "image": "assets/img/themes/Khalyl.webp", - "tags": [ - "Khalylexe", - "Dark", - "Rounded", - "firefox" - ], - "repository": "https://github.com/Khalylexe/Firefox-Rounded-Theme" - }, - { - "title": "ShyFox", - "link": "https://github.com/Naezr/ShyFox", - "description": "A very shy little theme that hides the entire browser interface in the window border", - "image": "assets/img/themes/shyfox.webp", - "tags": [ - "Naezr", - "minimal" - ], - "repository": "https://github.com/Naezr/ShyFox" - }, - { - "title": "greenyfox", - "link": "https://github.com/alan-ar1/greenyfox", - "description": "A modern dark theme with macos title bar buttons and Iosevka font", - "image": "assets/img/themes//9037DGTAHYA.webp", - "tags": [ - "alan-ar1", - "Dark", - "title-bar", - "minimal", - "Iosevka" - ], - "repository": "https://github.com/alan-ar1/greenyfox" - }, - { - "title": "98/95fox", - "link": "https://github.com/osem598/Firefox-98", - "description": "Chicago 95 & Windows95/98-like theme for firefox", - "image": "assets/img/themes/ff95.webp", - "tags": [ - "osem598", - "Light", - "Retro", - "Chicago", - "98", - "95" - ], - "repository": "https://github.com/osem598/Firefox-98" - }, - { - "title": "ArcWTF", - "link": "https://github.com/KiKaraage/ArcWTF/", - "description": "UserChrome.css theme to bring Arc Browser look from Windows to Firefox! ", - "image": "assets/img/themes/arcwtf.webp", - "tags": [ - "KiKaraage", - "dark", - "light", - "Arc Browser", - "Sidebery", - "vertical tabs", - "autohide", - "minimal" - ], - "repository": "https://github.com/KiKaraage/ArcWTF/" - }, - { - "title": "FrameUI for Firefox", - "link": "https://github.com/FineFuturity/FrameUIForFirefox/", - "description": "A new way to view your web content. Like looking at photos printed from an old Polaroid camera.", - "image": "assets/img/themes/FrameUIScreenshot.webp", - "tags": [ - "FineFuturity", - "one line", - "vertical tabs", - "Sidebery", - "Tab Center Reborn", - "toolbars on bottom", - "immersive", - "minimal" - ], - "repository": "https://github.com/FineFuturity/FrameUIForFirefox/" - }, - { - "title": "arcfox", - "link": "https://github.com/betterbrowser/arcfox", - "description": "make firefox flow like arc", - "image": "assets/img/themes/arcfox.webp", - "tags": [ - "nikollesan", - "dark", - "light", - "luanderfarias", - "bettterbrowser" - ], - "repository": "https://github.com/betterbrowser/arcfox" - }, - { - "title": "WhiteSur", - "link": "https://github.com/vinceliuice/WhiteSur-firefox-theme", - "description": "A MacOSX Safari theme for Firefox 80+", - "image": "assets/img/themes/whitesur_vinceliuice.webp", - "tags": [ - "vinceliuice", - "dark", - "light", - "MacOSX ", - "Monterey", - "safari", - "mac", - "oneline" - ], - "repository": "https://github.com/vinceliuice/WhiteSur-firefox-theme" - }, - { - "title": "Another Oneline", - "link": "https://github.com/mimipile/firefoxCSS", - "description": "Another simple, oneline, minimal, keyboard-centered Firefox CSS theme.", - "image": "assets/img/themes/screenshot-site.webp", - "tags": [ - "mimipile", - "dark", - "light", - "adaptative", - "onebar", - "oneline", - "minimal", - "keyboard", - "keyboard centered" - ], - "repository": "https://github.com/mimipile/firefoxCSS" - }, - { - "title": "MacFox-Theme", - "link": "https://github.com/d0sse/macFox-theme", - "description": "Safari-like minimalistic theme with system accent color", - "image": "assets/img/themes/d0sse_mac_fox_screen.webp", - "tags": [ - "dark", - "light", - "accent", - "minimal", - "macos", - "safari", - "mac", - "autocolor" - ], - "repository": "https://github.com/d0sse/macFox-theme" - }, - { - "title": "EdgyArc Fr", - "link": "https://github.com/artsyfriedchicken/EdgyArc-fr/", - "description": "Combining the sleekness of Microsoft Edge and the aesthetics of the Arc browser", - "image": "assets/img/themes/edgyarc-fr.webp", - "tags": [ - "artsyFriedChicken", - "dark", - "light", - "macOS", - "mac", - "arc", - "edge", - "translucent", - "blur", - "sidebery", - "Vertical Tabs" - ], - "repository": "https://github.com/artsyfriedchicken/EdgyArc-fr/" - }, - { - "title": "Blurfox", - "link": "https://github.com/safak45xx/Blurfox", - "description": "A Firefox theme", - "image": "assets/img/themes/blurfox.webp", - "tags": [ - "blur", - "minimal", - "oneline" - ], - "repository": "https://github.com/safak45xx/Blurfox" - }, - { - "title": "FF Ultima", - "link": "https://github.com/soulhotel/FF-ULTIMA", - "description": "Native Vertical Tabs, keep your sidebar, no extensions. No overthinking. FF Ultima", - "image": "assets/img/themes/FF_Ultima.webp", - "tags": [ - "vertical tabs", - "minimal", - "lightweight", - "customizable", - "dark", - "light" - ], - "repository": "https://github.com/soulhotel/FF-ULTIMA" - }, - { - "title": "Firefox Xtra Compact", - "link": "https://github.com/CarterSnich/firefox-xtra-compact", - "description": "Aims to make Firefox more compact and give a tiny bit more web view area for low-screen devices.", - "image": "assets/img/themes/xtracompact.webp", - "tags": [ - "CarterSnich", - "compact", - "themeless" - ], - "repository": "https://github.com/CarterSnich/firefox-xtra-compact" - }, - { - "title": "Aero Firefox", - "link": "https://github.com/SandTechStuff/AeroFirefox", - "description": "Brings the Windows 7 titlebar buttons to modern versions of Firefox", - "image": "assets/img/themes/aeroFirefox.webp", - "tags": [ - "aero", - "dark", - "light", - "lightweight", - "windows7", - "minimal" - ], - "repository": "https://github.com/SandTechStuff/AeroFirefox" - }, - { - "title": "PotatoFox", - "link": "https://codeberg.org/awwpotato/PotatoFox", - "description": "A compact and minimal firefox theme using Sidebery", - "image": "assets/img/themes/PotatoFox.webp", - "tags": [ - "minimal", - "compact", - "vertical tabs", - "Sidebery", - "arc" - ], - "repository": "https://codeberg.org/awwpotato/PotatoFox" - }, - { - "title": "Minimal-Arc", - "link": "https://github.com/zayihu/Minimal-Arc", - "description": "Minimal light Firefox theme with Arc like design with vertical tabs", - "image": "assets/img/themes/minimal_arc.webp", - "tags": [ - "minimal", - "compact", - "vertical-tabs", - "Sidebery", - "light", - "Arc Browser" - ], - "repository": "https://github.com/zayihu/Minimal-Arc" - }, - { - "title": "SnowFox", - "link": "https://github.com/naveensagar765/SnowFox", - "description": "Modern blue glass theme with side bookmark bar", - "image": "assets/img/themes/snowfox.webp", - "tags": [ - "moder", - "blue", - "side-bookmark-bar", - "home page" - ], - "repository": "https://github.com/naveensagar765/SnowFox" - }, - { - "title": "AnimatedFox", - "link": "https://github.com/RemyIsCool/AnimatedFox", - "description": "A minimal Firefox/LibreWolf theme with satisfying animations and a hidden URL bar.", - "image": "assets/img/themes/animatedfox.webp", - "tags": [ - "RemyIsCool", - "dark", - "minimal", - "hidden url bar", - "animations" - ], - "repository": "https://github.com/RemyIsCool/AnimatedFox" - }, - { - "title": "Quietfox Reborn", - "link": "https://github.com/TheGITofTeo997/quietfoxReborn", - "description": "Resurrecting a very Clean Firefox userChrome Mod ", - "image": "assets/img/themes/20053home.webp", - "tags": [ - "Teo", - "sleek", - "minimal", - "quiet" - ], - "repository": "https://github.com/TheGITofTeo997/quietfoxReborn" - }, - { - "title": "GlassyFox", - "link": "https://github.com/AnhNguyenlost13/GlassyFox", - "description": "Keeps the original new tab page layout while making it look as glassy as possible.", - "image": "assets/img/themes/glassyfox.webp", - "tags": [ - "blur", - "AnhNguyenlost13" - ], - "repository": "https://github.com/AnhNguyenlost13/GlassyFox" - }, - { - "title": "98/95fox Xtra Compact", - "link": "https://github.com/programneer/Firefox-98-Xtra-Compact", - "description": "The mix of nostalgia and compact.", - "image": "assets/img/themes/ff95xtracompact.webp", - "tags": [ - "Programneer", - "Light", - "Retro", - "Chicago", - "98", - "95", - "compact" - ], - "repository": "https://github.com/programneer/Firefox-98-Xtra-Compact" - }, - { - "title": "FireFox OneLine Navbar", - "link": "https://github.com/FawazBinSaleem/FireFoxOneLinerCSS", - "description": "A compact oneliner navbar css theme.", - "image": "assets/img/themes/fireFoxOneLinerCSS.webp", - "tags": [ - "oneline", - "black color", - "amoled", - "oneliner", - "navbar", - "One Line", - "compact" - ], - "repository": "https://github.com/FawazBinSaleem/FireFoxOneLinerCSS" - }, - { - "title": "Monochrome Neubrutalism Firefox Simple", - "link": "https://github.com/Kaskapa/Monochrome-Neubrutalism-Firefox-Theme", - "description": "A simple light theme I made to explore the world of Firefox theming.", - "image": "assets/img/themes/monochromeNeubrutalism.webp", - "tags": [ - "light", - "neubrutalislm", - "monochrome", - "simple", - "Kaskapa" - ], - "repository": "https://github.com/Kaskapa/Monochrome-Neubrutalism-Firefox-Theme" - }, - { - "title": "minimalistest oneliner", - "link": "https://github.com/yari-dog/minimalistest-oneliner-librewolf", - "description": "buttons are for nerds.", - "image": "assets/img/themes/minimalist-oneliner.webp", - "tags": [ - "simple", - "oneliner", - "oneline", - "compact" - ], - "repository": "https://github.com/yari-dog/minimalistest-oneliner-librewolf" - }, - { - "title": "Arc UI", - "link": "https://github.com/dxdotdev/arc-ui", - "description": "Make your Firefox like the Arc Browser.", - "image": "assets/img/themes/29957ui.webp", - "tags": [ - "dxdotdev", - "arc browser", - "compact", - "modern" - ], - "repository": "https://github.com/dxdotdev/arc-ui" - }, - { - "title": "Material Fox Updated", - "link": "https://github.com/edelvarden/material-fox-updated", - "description": "🦊 Firefox user CSS theme looks similar to Chrome.", - "image": "assets/img/themes/material-fox-updated-preview.webp", - "tags": [ - "dark", - "light", - "rtl", - "customizable", - "material", - "material-design", - "refresh", - "modern", - "updated" - ], - "repository": "https://github.com/edelvarden/material-fox-updated" - } + { + "title": "Titlebar-Button-Fix", + "link": "https://github.com/birbkeks/Firefox-Titlebar-Button-Fix", + "description": "This theme fixes titlebar min max close buttons for Firefox in linux. ", + "image": "assets/img/themes/titlebarfix.webp", + "tags": [ + "birbkeks", + "fix", + "titlebar" + ], + "repository": "https://github.com/birbkeks/Firefox-Titlebar-Button-Fix", + "pushed_at": "2024-05-12T18:57:05Z", + "stargazers_count": 5, + "avatar": "https://avatars.githubusercontent.com/u/67545942?v=4" + }, + { + "title": "Sweet_Pop!", + "link": "https://github.com/PROxZIMA/Sweet-Pop", + "description": "Sweet_Pop! Minimalist oneliner theme for Firefox perfectly matching Sweet Dark.", + "image": "assets/img/themes/sweetpop.webp", + "tags": [ + "dark", + "light", + "modern", + "blue", + "auto-hide", + "floating bar", + "PROxZIMA" + ], + "repository": "https://github.com/PROxZIMA/Sweet-Pop", + "pushed_at": "2023-03-25T10:54:34Z", + "stargazers_count": 253, + "avatar": "https://avatars.githubusercontent.com/u/43103163?v=4" + }, + { + "title": "minimalFOX", + "link": "https://github.com/marmmaz/FirefoxCSS", + "description": "A compact & minimal Firefox theme built for macOS.", + "image": "assets/img/themes/minimalfox.webp", + "tags": [ + "dark", + "macos", + "marmazz", + "auto-hide", + "floating bar", + "compact" + ], + "repository": "https://github.com/marmmaz/FirefoxCSS", + "pushed_at": "2021-10-13T19:11:07Z", + "stargazers_count": 73, + "avatar": "https://avatars.githubusercontent.com/u/71498246?v=4" + }, + { + "title": "FirefoxCss", + "link": "https://github.com/h4wwk3ye/firefoxCSS", + "description": "Custom userChrome.css for firefox based on Material Fox and Flying Fox with few small changes.", + "image": "assets/img/themes/firefoxcss.webp", + "tags": [ + "light", + "h4wwk3ye", + "Tree Style Tab", + "sidebar" + ], + "repository": "https://github.com/h4wwk3ye/firefoxCSS", + "pushed_at": "2021-01-25T11:22:25Z", + "stargazers_count": 23, + "avatar": "https://avatars.githubusercontent.com/u/24487030?v=4" + }, + { + "title": "Simplify Silver Peach for Firefox", + "link": "https://github.com/CristianDragos/FirefoxThemes/tree/master/Simplify%20Silver%20Peach", + "description": "A minimal Firefox Theme for those who would like to properly enjoy my Simplify 10 Silver Peach - Windows 10 Themes\n Compatibility: V89+", + "image": "assets/img/themes/simplify_silver_peach_for_firefox_preview.webp", + "tags": [ + "light", + "pastel", + "CristianDragos", + "rounded" + ], + "repository": "https://github.com/CristianDragos/FirefoxThemes", + "pushed_at": "2021-10-07T12:23:11Z", + "stargazers_count": 138, + "avatar": "https://avatars.githubusercontent.com/u/3705687?v=4" + }, + { + "title": "Simplify Darkish for Firefox", + "link": "https://github.com/CristianDragos/FirefoxThemes/tree/master/Simplify%20Darkish", + "description": "A minimal Firefox Theme for those who would like to properly enjoy my Simplify 10 Darkish - Windows 10 Themes\n Compatibility: V89+", + "image": "assets/img/themes/simplify_darkish_for_firefox_preview.webp", + "tags": [ + "dark", + "CristianDragos", + "windows 10" + ], + "repository": "https://github.com/CristianDragos/FirefoxThemes", + "pushed_at": "2021-10-07T12:23:11Z", + "stargazers_count": 138, + "avatar": "https://avatars.githubusercontent.com/u/3705687?v=4" + }, + { + "title": "SimpleFox", + "link": "https://github.com/migueravila/Simplefox", + "description": "🦊 A Userstyle theme for Firefox minimalist and Keyboard centered.", + "image": "assets/img/themes/simplefox.webp", + "tags": [ + "migueravila", + "dark", + "minimal", + "keyboard", + "compact", + "linux" + ], + "repository": "https://github.com/migueravila/Simplefox", + "pushed_at": "2022-04-24T18:56:19Z", + "stargazers_count": 1757, + "avatar": "https://avatars.githubusercontent.com/u/35583825?v=4" + }, + { + "title": "blurredfox", + "link": "https://github.com/manilarome/blurredfox", + "description": "A modern Firefox CSS Theme", + "image": "assets/img/themes/blurred.webp", + "tags": [ + "manilarome", + "dark", + "light", + "blur", + "linux" + ], + "repository": "https://github.com/manilarome/blurredfox", + "pushed_at": "2023-06-27T10:12:27Z", + "stargazers_count": 914, + "avatar": "https://avatars.githubusercontent.com/u/40349590?v=4" + }, + { + "title": "Firefox Review", + "link": "https://github.com/fellowish/firefox-review", + "description": "Firefox Review is a CSS redesign of the browser, changing the look of Firefox to match the color scheme and design language of Firefox Preview, the previous name of Mozilla's new mobile app.", + "image": "assets/img/themes/firefoxreview.webp", + "tags": [ + "dark", + "light", + "fellowish", + "archived", + "colorscheme" + ], + "repository": "https://github.com/fellowish/firefox-review", + "pushed_at": "2021-04-22T18:14:52Z", + "stargazers_count": 142, + "avatar": "https://avatars.githubusercontent.com/u/28973978?v=4" + }, + { + "title": "nord-firefox", + "link": "https://github.com/daaniiieel/nord-firefox", + "description": "Firefox userChrome.css theme, based on https://github.com/AnubisZ9/Global-Dark-Nordic-theme/.", + "image": "assets/img/themes/nord.webp", + "tags": [ + "nord", + "daaniiieel", + "colorscheme" + ], + "repository": "https://github.com/daaniiieel/nord-firefox", + "pushed_at": "2020-04-18T08:08:07Z", + "stargazers_count": 28, + "avatar": "https://avatars.githubusercontent.com/u/41679054?v=4" + }, + { + "title": "not-holar's theme", + "link": "https://github.com/not-holar/my_firefox_theme", + "description": "Welcome to the repo for my Firefox theme, a theme that aims to look nice and clean while not compromising functionality.\n Compatibility: V89+", + "image": "assets/img/themes/MyFirefoxThemenotholar.webp", + "tags": [ + "not-holar", + "stylus", + "Tree Style", + "dark" + ], + "repository": "https://github.com/not-holar/my_firefox_theme", + "pushed_at": "2022-10-17T13:05:29Z", + "stargazers_count": 83, + "avatar": "https://avatars.githubusercontent.com/u/58831297?v=4" + }, + { + "title": "Firefox-Mod-Blur", + "link": "https://github.com/datguypiko/Firefox-Mod-Blur", + "description": "Tested 84.0.1 Windows 10 / Default Dark Theme ", + "image": "assets/img/themes/firefoxmodblur.webp", + "tags": [ + "blur", + "datguypiko", + "dark", + "centre", + "rounded" + ], + "repository": "https://github.com/datguypiko/Firefox-Mod-Blur", + "pushed_at": "2024-10-06T14:08:25Z", + "stargazers_count": 1279, + "avatar": "https://avatars.githubusercontent.com/u/61329159?v=4" + }, + { + "title": "quietfox", + "link": "https://github.com/coekuss/quietfox", + "description": "This userChrome mod was created to make the Firefox UI cleaner and more modern without sacrificing any of its original features. You can still use themes, and you can still use Compact Mode and Touch Mode. You can pretty much forget that you have a mod installed, it works quietly in the background.", + "image": "assets/img/themes/quietfox.webp", + "tags": [ + "coekuss", + "toolkit", + "simple" + ], + "repository": "https://github.com/coekuss/quietfox", + "pushed_at": "2021-07-05T22:51:14Z", + "stargazers_count": 173, + "avatar": "https://avatars.githubusercontent.com/u/45906331?v=4" + }, + { + "title": "minimal-functional-fox", + "link": "https://github.com/mut-ex/minimal-functional-fox", + "description": "A minimal, yet functional configuration for Firefox!", + "image": "assets/img/themes/minimalfuntionalfox.webp", + "tags": [ + "centre", + "minimal", + "dark", + "animations" + ], + "repository": "https://github.com/mut-ex/minimal-functional-fox", + "pushed_at": "2023-05-19T00:16:56Z", + "stargazers_count": 723, + "avatar": "https://avatars.githubusercontent.com/u/21265981?v=4" + }, + { + "title": "MaterialFox", + "link": "https://github.com/muckSponge/MaterialFox", + "description": "A Material Design-inspired userChrome.css theme for Firefox", + "image": "assets/img/themes/materialfox.webp", + "tags": [ + "muckSponge", + "dark", + "light", + "colorscheme" + ], + "repository": "https://github.com/muckSponge/MaterialFox", + "pushed_at": "2024-09-23T08:58:42Z", + "stargazers_count": 1921, + "avatar": "https://avatars.githubusercontent.com/u/5405629?v=4" + }, + { + "title": "Firefox UWP Style", + "link": "https://github.com/Guerra24/Firefox-UWP-Style", + "description": "A theme that follows UWP styling. Featuring the original MDL2 design and Sun Valley refresh", + "image": "assets/img/themes/firefoxuwpstyle.webp", + "tags": [ + "Guerra24", + "dark", + "colorscheme" + ], + "repository": "https://github.com/Guerra24/Firefox-UWP-Style", + "pushed_at": "2024-10-04T03:26:00Z", + "stargazers_count": 399, + "avatar": "https://avatars.githubusercontent.com/u/9023392?v=4" + }, + { + "title": "Almost Dark Proton", + "link": "https://github.com/Neikon/Almost-Dark-Grey-Colorfull-Proton---FirefoxCSS-Themes", + "description": "Based on Simplify Darkish with few small changes based too in Mod Blur theme. It is intended to be used together with the new firefox elements with the new design called Proton, as the new tab page design. \n Compatibility: V89+", + "image": "assets/img/themes/almostdarkproton.webp", + "tags": [ + "centre", + "dark", + "Neikon", + "icon tab bar" + ], + "repository": "https://github.com/Neikon/Almost-Dark-Grey-Colorfull-Proton---FirefoxCSS-Themes", + "pushed_at": "2022-04-05T07:18:45Z", + "stargazers_count": 54, + "avatar": "https://avatars.githubusercontent.com/u/1765319?v=4" + }, + { + "title": "Monochrome Tree", + "link": "https://github.com/MatejKafka/FirefoxTheme", + "description": "A custom minimalist theme for Firefox with Tree Style Tab support", + "image": "assets/img/themes/19.webp", + "tags": [ + "dark", + "light", + "MatejKafka", + "monochrome", + "Tree Style", + "one-line" + ], + "repository": "https://github.com/MatejKafka/FirefoxTheme", + "pushed_at": "2022-04-26T10:05:10Z", + "stargazers_count": 15, + "avatar": "https://avatars.githubusercontent.com/u/6414091?v=4" + }, + { + "title": "Flying Fox", + "link": "https://github.com/akshat46/FlyingFox", + "description": "An opinionated set of configurations for firefox with Material Fox, github-moonlight userstyle", + "image": "assets/img/themes/flying.webp", + "tags": [ + "material", + "moonlight", + "akshat46" + ], + "repository": "https://github.com/akshat46/FlyingFox", + "pushed_at": "2023-04-11T07:11:04Z", + "stargazers_count": 1594, + "avatar": "https://avatars.githubusercontent.com/u/7402043?v=4" + }, + { + "title": "FirefoxW10ContextMenus", + "link": "https://github.com/M1ch431/FirefoxW10ContextMenus", + "description": "Emulates the Windows 10 context menus in Firefox.", + "image": "assets/img/themes/20.webp", + "tags": [ + "toolkit", + "context", + "menu", + "windows" + ], + "repository": "https://github.com/M1ch431/FirefoxW10ContextMenus", + "pushed_at": "2021-09-20T04:21:08Z", + "stargazers_count": 108, + "avatar": "https://avatars.githubusercontent.com/u/46256998?v=4" + }, + { + "title": "EdgeFox", + "link": "https://github.com/23Bluemaster23/EdgeFox", + "description": "Is a userchrome that imitates (or attempts to imitate) the style of Microsoft's Edge Chromiun browser.", + "image": "assets/img/themes/edgefox.webp", + "tags": [ + "windows", + "edge" + ], + "repository": "https://github.com/23Bluemaster23/EdgeFox", + "pushed_at": "2021-09-26T14:59:13Z", + "stargazers_count": 32, + "avatar": "https://avatars.githubusercontent.com/u/49736771?v=4" + }, + { + "title": "Firefox i3wm theme", + "link": "https://github.com/aadilayub/firefox-i3wm-theme", + "description": "A theme for Firefox meant to emulate qutebrowser and integrate with the i3 window manager.", + "image": "assets/img/themes/ff-i3wm.webp", + "tags": [ + "qt", + "qute", + "qutebrowser", + "i3" + ], + "repository": "https://github.com/aadilayub/firefox-i3wm-theme", + "pushed_at": "2023-07-27T09:02:57Z", + "stargazers_count": 142, + "avatar": "https://avatars.githubusercontent.com/u/31581044?v=4" + }, + { + "title": "Edge-Frfox", + "link": "https://github.com/bmFtZQ/Edge-FrFox", + "description": "A Firefox userChrome.css theme that aims to recreate the look and feel of Microsoft Edge.", + "image": "assets/img/themes/Edge-Frfox.webp", + "tags": [ + "light", + "dark", + "fluent", + "microsoft", + "bmFtZQ", + "windows", + "mac", + "linux" + ], + "repository": "https://github.com/bmFtZQ/Edge-FrFox", + "pushed_at": "2024-09-24T14:06:57Z", + "stargazers_count": 666, + "avatar": "https://avatars.githubusercontent.com/u/62812711?v=4" + }, + { + "title": "NicoFox", + "link": "https://github.com/SlowNicoFish/NicoFox", + "description": "A simple rounded theme", + "image": "assets/img/themes/22381112138598-fe8cd400-8bd1-11eb-8eed-edcca2c689d8.webp", + "tags": [ + "rounded", + "minimal" + ], + "repository": "https://github.com/SlowNicoFish/NicoFox", + "pushed_at": "2021-03-23T00:04:37Z", + "stargazers_count": 7, + "avatar": "https://avatars.githubusercontent.com/u/19305293?v=4" + }, + { + "title": "Elegant Nord Theme", + "link": "https://github.com/rafamadriz/Firefox-Elegant-NordTheme", + "description": "Elegant Nord Theme with material design", + "image": "assets/img/themes/Elegant-Nord-Theme.webp", + "tags": [ + "nord", + "material" + ], + "repository": "https://github.com/rafamadriz/Firefox-Elegant-NordTheme", + "pushed_at": "2023-04-28T01:47:55Z", + "stargazers_count": 23, + "avatar": "https://avatars.githubusercontent.com/u/67771985?v=4" + }, + { + "title": "Moonlight 🌌", + "link": "https://github.com/eduardhojbota/moonlight-userChrome", + "description": "A dark userstyle for Firefox inspired by moonlight-vscode-theme and github-moonlight", + "image": "assets/img/themes/moonlight.webp", + "tags": [ + "dark" + ], + "repository": "https://github.com/eduardhojbota/moonlight-userChrome", + "pushed_at": "2023-11-25T14:46:00Z", + "stargazers_count": 139, + "avatar": "https://avatars.githubusercontent.com/u/2820538?v=4" + }, + { + "title": "Firefox Halo", + "link": "https://github.com/seirin-blu/Firefox-Halo", + "description": "A mininmalist Firefox theme with a lot of about: pages edited to act as resources. Updates about every month.", + "image": "assets/img/themes/firefoxhalo.webp", + "tags": [ + "toolkit" + ], + "repository": "https://github.com/seirin-blu/Firefox-Halo", + "pushed_at": "2023-11-27T19:29:22Z", + "stargazers_count": 42, + "avatar": "https://avatars.githubusercontent.com/u/61664123?v=4" + }, + { + "title": "Pseudo-fullscreen Firefox, Sidebery and YouTube", + "link": "https://github.com/ongots/pseudo-fullscreen-firefox", + "description": "\n Compatibility: V89+", + "image": "assets/img/themes/always-fullscreen-firefox.webp", + "tags": [ + "toolkit", + "sidebar" + ], + "repository": "https://github.com/ongots/pseudo-fullscreen-firefox", + "pushed_at": "2024-10-07T10:15:49Z", + "stargazers_count": 55, + "avatar": "https://avatars.githubusercontent.com/u/43604031?v=4" + }, + { + "title": "WhiteSur Safari style for Firefox", + "link": "https://github.com/adamxweb/WhiteSurFirefoxThemeMacOS", + "description": "Make your Firefox look like Safari. MacOS Big Sur inspired theme for Firefox on MacOS & Windows.\n Compatibility: V89+", + "image": "assets/img/themes/whitesur.webp", + "tags": [ + "apple", + "mac", + "safari" + ], + "repository": "https://github.com/adamxweb/WhiteSurFirefoxThemeMacOS", + "pushed_at": "2024-07-11T08:01:46Z", + "stargazers_count": 480, + "avatar": "https://avatars.githubusercontent.com/u/6800453?v=4" + }, + { + "title": "Alpen Blue to Firefox CSS", + "link": "https://github.com/Godiesc/AlpenBlue", + "description": "Theme to Blue and Alpenglow lovers\n Compatibility: V89+", + "image": "assets/img/themes/alpenblue.webp", + "tags": [ + "aplenblue", + "alpenglow", + "Godiesc" + ], + "repository": "https://github.com/Godiesc/AlpenBlue", + "pushed_at": "2022-06-19T19:00:45Z", + "stargazers_count": 64, + "avatar": "https://avatars.githubusercontent.com/u/22057609?v=4" + }, + { + "title": "duskFox", + "link": "https://github.com/aminomancer/uc.css.js", + "description": "A dark indigo theme integrated with extensive functional and visual scripts.\n Compatibility: V89+", + "image": "assets/img/themes/duskfox.webp", + "tags": [ + "dark", + "dusk" + ], + "repository": "https://github.com/aminomancer/uc.css.js", + "pushed_at": "2024-09-30T03:51:21Z", + "stargazers_count": 332, + "avatar": "https://avatars.githubusercontent.com/u/33384265?v=4" + }, + { + "title": "Compact Mode to Firefox Css", + "link": "https://github.com/Godiesc/compactmodefirefoxcss", + "description": "Theme to Make Firefox Compact and keep it's Beauty\n Compatibility: V89+", + "image": "assets/img/themes/splashcompact.webp", + "tags": [ + "toolkit", + "Godiesc" + ], + "repository": "https://github.com/Godiesc/compactmodefirefoxcss", + "pushed_at": "2021-08-27T17:47:51Z", + "stargazers_count": 16, + "avatar": "https://avatars.githubusercontent.com/u/22057609?v=4" + }, + { + "title": "DiamondFucsia Theme to Firefox Css", + "link": "https://github.com/Godiesc/DiamondFucsia", + "description": "Dark Theme to Firefox with Fuchsia Colors\n Compatibility: V89+", + "image": "assets/img/themes/diamondfucsia.webp", + "tags": [ + "Godiesc" + ], + "repository": "https://github.com/Godiesc/DiamondFucsia", + "pushed_at": "2023-11-25T12:46:57Z", + "stargazers_count": 7, + "avatar": "https://avatars.githubusercontent.com/u/22057609?v=4" + }, + { + "title": "Australis like tabs in Proton UI", + "link": "https://github.com/sagars007/Australis-like-tabs-FF-ProtonUI-changes", + "description": "Changes to make the new proton UI redesign in Firefox better; including changes to tabs, more compact-compact mode, proton gradient accents in elements and much more\n Compatibility: V89+", + "image": "assets/img/themes/custom_australistabs_protonUI.webp", + "tags": [ + "compact" + ], + "repository": "https://github.com/sagars007/Australis-like-tabs-FF-ProtonUI-changes", + "pushed_at": "2021-06-10T07:37:39Z", + "stargazers_count": 10, + "avatar": "https://avatars.githubusercontent.com/u/56472130?v=4" + }, + { + "title": "Firefox vertical tabs (TST) UI", + "link": "https://github.com/sagars007/Firefox-vertical-tabs-customUI", + "description": "Vertical tabs in Firefox using tree style tabs. Vibrant tab selectors, full dark mode, titlebar text in nav-bar and much more.\n Compatibility: V89+", + "image": "assets/img/themes/compact_verticaltabs_view.webp", + "tags": [ + "sidebar", + "sidetab", + "tree" + ], + "repository": "https://github.com/sagars007/Firefox-vertical-tabs-customUI", + "pushed_at": "2021-09-04T19:49:09Z", + "stargazers_count": 29, + "avatar": "https://avatars.githubusercontent.com/u/56472130?v=4" + }, + { + "title": "Lepton(Proton Fix) in Proton UI", + "link": "https://github.com/black7375/Firefox-UI-Fix", + "description": "🦊 I respect proton UI and aim to fix it. Icons, Padding, Tab Design...\n Compatibility: V89+", + "image": "assets/img/themes/Lepton.webp", + "tags": [ + "" + ], + "repository": "https://github.com/black7375/Firefox-UI-Fix", + "pushed_at": "2024-09-23T12:00:17Z", + "stargazers_count": 5361, + "avatar": "https://avatars.githubusercontent.com/u/25581533?v=4" + }, + { + "title": "Lepton's Photon-Styled in Proton UI", + "link": "https://github.com/black7375/Firefox-UI-Fix/tree/photon-style", + "description": "🦊 I tried to preserve Proton’s feeling while preserving Photon’s strengths. Icons, Padding, Tab Design...\n Compatibility: V89+", + "image": "assets/img/themes/Lepton-PhotonStyle.webp", + "tags": [ + "" + ], + "repository": "https://github.com/black7375/Firefox-UI-Fix/tree/photon-style", + "pushed_at": "2024-09-23T12:00:17Z", + "stargazers_count": 5361, + "avatar": "https://avatars.githubusercontent.com/u/25581533?v=4" + }, + { + "title": "[Firefox 90+] RainFox", + "link": "https://github.com/1280px/rainfox", + "description": "Restores Photon's look and feel but keeps Proton's clarity with some improvements and new features. \n Compatibility: V89+", + "image": "assets/img/themes/rainfox.webp", + "tags": [ + "" + ], + "repository": "https://github.com/1280px/rainfox", + "pushed_at": "2022-02-04T15:28:44Z", + "stargazers_count": 67, + "avatar": "https://avatars.githubusercontent.com/u/71165491?v=4" + }, + { + "title": "Gradient rounded tabs redesign and ultra compact mode [Proton UI]", + "link": "https://github.com/sagars007/Proton-UI-connected-rounded-tabs-firefox-css", + "description": "Firefox Proton UI minimal changes with nav-bar-connected rounded tabs, reduced compact mode, nightly color gradient accents etc.. \n Compatibility: V89+", + "image": "assets/img/themes/proton-ui-gradient-rounded-tabs-display.webp", + "tags": [ + "" + ], + "repository": "https://github.com/sagars007/Proton-UI-connected-rounded-tabs-firefox-css", + "pushed_at": "2023-05-14T06:24:23Z", + "stargazers_count": 32, + "avatar": "https://avatars.githubusercontent.com/u/56472130?v=4" + }, + { + "title": "Technetium", + "link": "https://github.com/edo0/Technetium", + "description": "A focused approach to taming the new Firefox Proton interface, restituting some of the beloved elements retired alongside the old Photon UI - menu icons and much more \n Compatibility: V89+", + "image": "assets/img/themes/Technetium.webp", + "tags": [ + "edo0", + "light", + "dark", + "rounded", + "squared", + "compact", + "v89" + ], + "repository": "https://github.com/edo0/Technetium", + "pushed_at": "2022-02-13T15:22:08Z", + "stargazers_count": 89, + "avatar": "https://avatars.githubusercontent.com/u/16632292?v=4" + }, + { + "title": "Chameleons-Beauty to Firefox CSS", + "link": "https://github.com/Godiesc/Chameleons-Beauty", + "description": "Adaptive Theme to Firefox Themes \n Compatibility: V89+", + "image": "assets/img/themes/Chameleons-Beauty.webp", + "tags": [ + "dark", + "Godiesc", + "colourful", + "dark", + "light", + "v89" + ], + "repository": "https://github.com/Godiesc/Chameleons-Beauty", + "pushed_at": "2024-10-01T22:51:24Z", + "stargazers_count": 104, + "avatar": "https://avatars.githubusercontent.com/u/22057609?v=4" + }, + { + "title": "pro-fox: enhanced firefox proton", + "link": "https://github.com/xmansyx/Pro-Fox", + "description": "a proton based theme to make it even better \n Compatibility: V89+", + "image": "assets/img/themes/pro-fox.webp", + "tags": [ + "xmansyx", + "centered", + "rounded", + "dark", + "light", + "bigger", + "v89" + ], + "repository": "https://github.com/xmansyx/Pro-Fox", + "pushed_at": "2021-06-16T17:19:03Z", + "stargazers_count": 27, + "avatar": "https://avatars.githubusercontent.com/u/23141127?v=4" + }, + { + "title": "MartinFox", + "link": "https://github.com/arp242/MartinFox", + "description": "Really simple userChrome.css to make the active tab stand out more; 61 lines. \n Compatibility: V89+", + "image": "assets/img/themes/martinfox.webp", + "tags": [ + "arp242", + "pure", + "compact", + "v91" + ], + "repository": "https://github.com/arp242/MartinFox", + "pushed_at": "2023-01-15T13:01:04Z", + "stargazers_count": 12, + "avatar": "https://avatars.githubusercontent.com/u/1032692?v=4" + }, + { + "title": "ProtoVibrant", + "link": "https://github.com/bpwned/protovibrant", + "description": "Add macOS vibrancy to the Proton titlebar. Supports dark and light mode. \n Compatibility: V89+", + "image": "assets/img/themes/protovibrant.webp", + "tags": [ + "vibrancy", + "macos", + "pure", + "transparency", + "bpwned", + "v89" + ], + "repository": "https://github.com/bpwned/protovibrant", + "pushed_at": "2021-11-21T18:25:54Z", + "stargazers_count": 22, + "avatar": "https://avatars.githubusercontent.com/u/446744?v=4" + }, + { + "title": "OnelineProton", + "link": "https://github.com/lr-tech/OnelineProton", + "description": "An oneline userChrome.css theme for Firefox, which aims to keep the Proton experience \n Compatibility: V89+", + "image": "assets/img/themes/onelineproton.webp", + "tags": [ + "one-line", + "proton", + "v89", + "minimal", + "dark", + "light", + "lr-tech", + "v89" + ], + "repository": "https://github.com/lr-tech/OnelineProton", + "pushed_at": "2024-06-27T04:03:42Z", + "stargazers_count": 129, + "avatar": "https://avatars.githubusercontent.com/u/75286649?v=4" + }, + { + "title": "Firefox Compact Mode", + "link": "https://github.com/dannycolin/fx-compact-mode", + "description": "A compact mode that follows Firefox 89 (known as Proton) design system while using the same vertical space as the compact mode in Firefox 88 (known as Photon). \n Compatibility: V91+", + "image": "assets/img/themes/fx-compact-mode.webp", + "tags": [ + "dannycolin", + "compact", + "proton", + "photon", + "v91", + "pure" + ], + "repository": "https://github.com/dannycolin/fx-compact-mode", + "pushed_at": "2021-12-11T08:15:44Z", + "stargazers_count": 127, + "avatar": "https://avatars.githubusercontent.com/u/7339076?v=4" + }, + { + "title": "GruvFox by Alfarex2019", + "link": "https://github.com/FirefoxCSSThemers/GruvFox", + "description": "GruvFox is a remix of dpcdpc11's theme, featuring the gruvbox color palette.\n Compatibility: V91+", + "image": "assets/img/themes/20930130265614-a7559ea7-70fd-44f9-a790-34c5c0e31493.webp", + "tags": [ + "alfarexguy2019", + "gruv", + "dark", + "pure", + "v91" + ], + "repository": "https://github.com/FirefoxCSSThemers/GruvFox", + "pushed_at": "2021-08-31T02:33:56Z", + "stargazers_count": 18, + "avatar": "https://avatars.githubusercontent.com/u/84518514?v=4" + }, + { + "title": "Proton Square", + "link": "https://github.com/leadweedy/Firefox-Proton-Square", + "description": "Recreates the feel of Quantum with its squared tabs and menus. No rounded corners to be seen.\n Compatibility: V91+", + "image": "assets/img/themes//24535ff_protonbutquantum.webp", + "tags": [ + "squared", + "v91", + "pure", + "quantum", + "leadweedy" + ], + "repository": "https://github.com/leadweedy/Firefox-Proton-Square", + "pushed_at": "2024-08-02T04:13:16Z", + "stargazers_count": 109, + "avatar": "https://avatars.githubusercontent.com/u/72583854?v=4" + }, + { + "title": "Natura for Firefox", + "link": "https://github.com/firefoxcssthemers/natura-for-firefox", + "description": "Nature theme for Firefox \n Compatibility: V91+", + "image": "assets/img/themes/natura.webp", + "tags": [ + "green", + "yellow", + "firefoxcssthemers", + "alfarexguy2019", + "v91", + "pure" + ], + "repository": "https://github.com/firefoxcssthemers/natura-for-firefox", + "pushed_at": "2021-09-01T06:34:05Z", + "stargazers_count": 4, + "avatar": "https://avatars.githubusercontent.com/u/84518514?v=4" + }, + { + "title": "MacOSVibrant", + "link": "https://github.com/Tnings/MacosVibrant", + "description": "A theme that uses MacOS Vibrancy and is styled after other Apple Apps \n Compatibility: V91+", + "image": "assets/img/themes/MacOSVibrant.webp", + "tags": [ + "Tnings", + "transparency", + "dark", + "rounded", + "v91" + ], + "repository": "https://github.com/Tnings/MacosVibrant", + "pushed_at": "2023-09-16T17:32:42Z", + "stargazers_count": 44, + "avatar": "https://avatars.githubusercontent.com/u/55812511?v=4" + }, + { + "title": "Cascade", + "link": "https://github.com/andreasgrafen/cascade", + "description": "A responsive \"One-Line\" theme based on SimpleFox for the new ProtonUI. \n Compatibility: V91+", + "image": "assets/img/themes/cascade.webp", + "tags": [ + "andreasgrafen", + "minial", + "oneline", + "responsive", + "one-line", + "proton", + "light", + "dark", + "v91" + ], + "repository": "https://github.com/andreasgrafen/cascade", + "pushed_at": "2024-02-12T02:22:29Z", + "stargazers_count": 1412, + "avatar": "https://avatars.githubusercontent.com/u/159644623?v=4" + }, + { + "title": "Firefox GNOME theme", + "link": "https://github.com/rafaelmardojai/firefox-gnome-theme", + "description": "A bunch of CSS code to make Firefox look closer to GNOME's native apps. \n Compatibility: V91+", + "image": "assets/img/themes/firefox-gnome-theme.webp", + "tags": [ + "rafaelmardojai", + "gnome", + "v91", + "rounded", + "light", + "dark", + "v91" + ], + "repository": "https://github.com/rafaelmardojai/firefox-gnome-theme", + "pushed_at": "2024-10-06T20:08:02Z", + "stargazers_count": 3460, + "avatar": "https://avatars.githubusercontent.com/u/6210397?v=4" + }, + { + "title": "PretoFox", + "link": "https://github.com/alfarexguy2019/pretofox", + "description": "A Black n White AMOLED theme for Firefox, inspired by the Preto color scheme. \n Compatibility: V91+", + "image": "assets/img/themes/PretoFox.webp", + "tags": [ + "alfarexguy2019", + "black", + "white", + "dark", + "light", + "v91" + ], + "repository": "https://github.com/alfarexguy2019/pretofox", + "pushed_at": "2022-01-21T14:48:03Z", + "stargazers_count": 11, + "avatar": "https://avatars.githubusercontent.com/u/78948152?v=4" + }, + { + "title": "Elementary OS Odin Firefox theme", + "link": "https://github.com/Zonnev/elementaryos-firefox-theme", + "description": "This theme supports all the window buttons layouts from Tweaks and it blends into the elementary OS Odin user interface. \n Compatibility: V91+", + "image": "assets/img/themes/firefox-eos6-theme.webp", + "tags": [ + "Zonnev", + "elementary-OS", + "OS", + "dark", + "light" + ], + "repository": "https://github.com/Zonnev/elementaryos-firefox-theme", + "pushed_at": "2024-10-07T12:12:26Z", + "stargazers_count": 424, + "avatar": "https://avatars.githubusercontent.com/u/32688765?v=4" + }, + { + "title": "Oneliner Deluxe", + "link": "https://github.com/Doosty/Oneliner-Deluxe", + "description": "Minimal, customizable and theme compatible \n Compatibility: V91+", + "image": "assets/img/themes/Oneliner_Deluxe.webp", + "tags": [ + "one-line", + "Doosty", + "v91" + ], + "repository": "https://github.com/Doosty/Oneliner-Deluxe", + "pushed_at": "2022-01-18T22:09:39Z", + "stargazers_count": 17, + "avatar": "https://avatars.githubusercontent.com/u/747588?v=4" + }, + { + "title": "Simple Oneliner", + "link": "https://github.com/hakan-demirli/Firefox_Custom_CSS", + "description": "A simple theme to maximize the vertical space of your monitor \n Compatibility: V91+", + "image": "assets/img/themes/Simple_Oneliner.webp", + "tags": [ + "Sidebery", + "dark", + "light", + "pdf", + "one-line", + "hakan-demirli", + "v91" + ], + "repository": "https://github.com/hakan-demirli/Firefox_Custom_CSS", + "pushed_at": "2024-02-12T15:16:03Z", + "stargazers_count": 75, + "avatar": "https://avatars.githubusercontent.com/u/78746991?v=4" + }, + { + "title": "GentleFox", + "link": "https://github.com/alfarexguy2019/gentlefox", + "description": "A Firefox theme, which features gentle curves, transparency and a minimal interface. \n Compatibility: V91+", + "image": "assets/img/themes/GentleFox.webp", + "tags": [ + "alfarexguy2019", + "blur", + "transparency", + "rounded", + "dark", + "light" + ], + "repository": "https://github.com/alfarexguy2019/gentlefox", + "pushed_at": "2021-11-11T06:11:48Z", + "stargazers_count": 58, + "avatar": "https://avatars.githubusercontent.com/u/78948152?v=4" + }, + { + "title": "Clean and Transparent", + "link": "https://github.com/Filip-Sutkowy/blurclean-firefox-theme", + "description": "Clean theme with as much transparency as Firefox lets you do \n Compatibility: V91+", + "image": "assets/img/themes/Clean_and_Transparent.webp", + "tags": [ + "Filip-Sutkowy", + "blur", + "pure", + "dark", + "light", + "transparency", + "v91" + ], + "repository": "https://github.com/Filip-Sutkowy/blurclean-firefox-theme", + "pushed_at": "2021-09-29T21:49:09Z", + "stargazers_count": 86, + "avatar": "https://avatars.githubusercontent.com/u/24491499?v=4" + }, + { + "title": "Waterfall", + "link": "https://github.com/crambaud/waterfall", + "description": "A minimalist one line theme", + "image": "assets/img/themes/waterfall.webp", + "tags": [ + "crambaud", + "minimal", + "one-line", + "mouse" + ], + "repository": "https://github.com/crambaud/waterfall", + "pushed_at": "2022-08-02T06:38:14Z", + "stargazers_count": 266, + "avatar": "https://avatars.githubusercontent.com/u/58910562?v=4" + }, + { + "title": "Brave-Fox: The Reimagined Browser, Reimagined", + "link": "https://github.com/Soft-Bred/Brave-Fox", + "description": "Brave-Fox is a Firefox Theme that brings Brave's design elements into Firefox.", + "image": "assets/img/themes//184007ilia7199au71.webp", + "tags": [ + "brave", + "pure", + "js", + "javascript", + "Soft-Bred" + ], + "repository": "https://github.com/Soft-Bred/Brave-Fox", + "pushed_at": "2022-11-22T08:47:02Z", + "stargazers_count": 139, + "avatar": "https://avatars.githubusercontent.com/u/60551230?v=4" + }, + { + "title": "KeyFox- A minimal, keyboard centered OneLiner CSS.", + "link": "https://github.com/alfarexguy2019/KeyFox", + "description": "KeyFox is A simple, minimal OneLiner Keyboard-centered CSS for Firefox.", + "image": "assets/img/themes//13268136501706-accca691-b9c3-4841-acd7-6bb843d2f422.webp", + "tags": [ + "black", + "dark", + "white", + "one-line", + "alfarexguy2019" + ], + "repository": "https://github.com/alfarexguy2019/KeyFox", + "pushed_at": "2022-01-21T15:28:42Z", + "stargazers_count": 114, + "avatar": "https://avatars.githubusercontent.com/u/78948152?v=4" + }, + { + "title": "CompactFox", + "link": "https://github.com/Tnings/CompactFox", + "description": "A simple theme that compacts a lot of the UI elements", + "image": "assets/img/themes/CompactFoxPreview.webp", + "tags": [ + "compact", + "dark", + "light", + "Tnings", + "pure" + ], + "repository": "https://github.com/Tnings/CompactFox", + "pushed_at": "2021-10-23T05:25:10Z", + "stargazers_count": 47, + "avatar": "https://avatars.githubusercontent.com/u/55812511?v=4" + }, + { + "title": "AuroraFox- Auroral Firefox", + "link": "https://github.com/alfarexguy2019/aurora-fox", + "description": "AuroraFox is a clean rounded Firefox theme, made using CSS, to match with the trendy 'Aurora' Colour Palette.", + "image": "assets/img/themes//18328141609919-befbc7f3-5199-4672-9ba1-8551d2a4e5a1.webp", + "tags": [ + "dark", + "minimal", + "purple", + "alfarexguy2019" + ], + "repository": "https://github.com/alfarexguy2019/aurora-fox", + "pushed_at": "2021-11-16T07:18:44Z", + "stargazers_count": 23, + "avatar": "https://avatars.githubusercontent.com/u/78948152?v=4" + }, + { + "title": "starry-fox", + "link": "https://github.com/sagars007/starry-fox", + "description": "Firefox CSS stylesheets for the Dark Space Theme. Matching more UI elements with the theme.", + "image": "assets/img/themes/starry-fox-resize.webp", + "tags": [ + "sagars007", + "dark", + "compact", + "darkspace", + "stars", + "nightsky", + "gradient", + "windows11" + ], + "repository": "https://github.com/sagars007/starry-fox", + "pushed_at": "2024-05-18T15:17:34Z", + "stargazers_count": 124, + "avatar": "https://avatars.githubusercontent.com/u/56472130?v=4" + }, + { + "title": "Firefox-GX", + "link": "https://github.com/Godiesc/firefox-gx", + "description": "Firefox Theme to Opera-GX skin Lovers.", + "image": "assets/img/themes/firefox-gx.webp", + "tags": [ + "Godiesc", + "dark", + "opera", + "gx", + "theme", + "adapted", + "light", + "fuchsia" + ], + "repository": "https://github.com/Godiesc/firefox-gx", + "pushed_at": "2024-10-01T12:53:30Z", + "stargazers_count": 812, + "avatar": "https://avatars.githubusercontent.com/u/22057609?v=4" + }, + { + "title": "Elegant Fox", + "link": "https://github.com/ayushhroyy/elegantfox", + "description": "A firefox context menu theme and background wallpaper support with linux desktops being the main focus", + "image": "assets/img/themes/elegantfox.webp ", + "tags": [ + "ayushhroyy", + "nord", + "dark", + "light", + "adaptive" + ], + "repository": "https://github.com/ayushhroyy/elegantfox", + "pushed_at": "2024-07-22T15:20:50Z", + "stargazers_count": 33, + "avatar": "https://avatars.githubusercontent.com/u/77523847?v=4" + }, + { + "title": "TYH Fox", + "link": "https://github.com/tyuhao/TYHfox", + "description": "A firefox Theme CSS", + "image": "assets/img/themes/TYHFox.webp ", + "tags": [ + "TYHFox", + "dark", + "light", + "adaptive" + ], + "repository": "https://github.com/tyuhao/TYHfox", + "pushed_at": "2022-12-03T06:36:48Z", + "stargazers_count": 10, + "avatar": "https://avatars.githubusercontent.com/u/47909858?v=4" + }, + { + "title": "AutoColor-Minimal-Proton", + "link": "https://github.com/Neikon/AutoColor-Minimal-Proton", + "description": "Some settings that together with the vivaldifox add-on create a minimalist theme whose color is the color of the website you are visiting.", + "image": "assets/img/themes/AutoColor-Minimal-Proton.webp", + "tags": [ + "vivaldi", + "proton", + "minimal", + "autocolor", + "dark", + "light", + "borderless", + "adaptive", + "compact", + "one-line", + "neikon" + ], + "repository": "https://github.com/Neikon/AutoColor-Minimal-Proton", + "pushed_at": "2023-09-03T09:17:06Z", + "stargazers_count": 57, + "avatar": "https://avatars.githubusercontent.com/u/1765319?v=4" + }, + { + "title": "SimpleFox Feather Edition", + "link": "https://github.com/BlueFalconHD/SimpleFox-Feather/", + "description": "A fork of SimpleFox that uses feather icons!", + "image": "assets/img/themes/simplefox-feather.webp", + "tags": [ + "Simplefox", + "Fork", + "Icons", + "BlueFalconHD" + ], + "repository": "https://github.com/BlueFalconHD/SimpleFox-Feather/", + "pushed_at": "2022-10-31T04:33:20Z", + "stargazers_count": 71, + "avatar": "https://avatars.githubusercontent.com/u/72631767?v=4" + }, + { + "title": "gale for Firefox", + "link": "https://github.com/mgastonportillo/gale-for-ff", + "description": "My CSS files to use with Firefox and Sidebery", + "image": "assets/img/themes//8988rjy7uTd.webp", + "tags": [ + "gale", + "dark", + "minimalistic", + "adaptive", + "compact", + "autohide", + "sidebar" + ], + "repository": "https://github.com/mgastonportillo/gale-for-ff", + "pushed_at": "2024-09-22T14:15:06Z", + "stargazers_count": 120, + "avatar": "https://avatars.githubusercontent.com/u/106234166?v=4" + }, + { + "title": "Firefox-UWP-Style-Theme-Omars-Edit", + "link": "https://github.com/omarb737/Firefox-UWP-Style-Theme-Omars-Edit", + "description": "A minimalistic-retro theme based off the UWP interface", + "image": "assets/img/themes//321608U0N6E.webp", + "tags": [ + "omarb737", + "dark", + "retro", + "minimalist", + "UWP" + ], + "repository": "https://github.com/omarb737/Firefox-UWP-Style-Theme-Omars-Edit", + "pushed_at": "2022-07-31T05:44:56Z", + "stargazers_count": 4, + "avatar": "https://avatars.githubusercontent.com/u/41845164?v=4" + }, + { + "title": "Modoki Firefox", + "link": "https://github.com/soup-bowl/Modoki-Firefox", + "description": "Bringing the classic Modern Modoki Netscape theme back", + "image": "assets/img/themes/soupbowlmodoki.webp", + "tags": [ + "soup-bowl", + "classic", + "netscape", + "skeuomorphic", + "light", + "retro" + ], + "repository": "https://github.com/soup-bowl/Modoki-Firefox", + "pushed_at": "2024-09-18T16:56:50Z", + "stargazers_count": 71, + "avatar": "https://avatars.githubusercontent.com/u/11209477?v=4" + }, + { + "title": "TileFox", + "link": "https://github.com/davquar/tilefox", + "description": "A minimalistic Firefox userChrome.css that integrates well with tiling window managers like i3", + "image": "assets/img/themes/tilefox.webp", + "tags": [ + "davquar", + "light", + "dark", + "tile", + "tilefox", + "minimal", + "minimalistic", + "brutalist", + "compact", + "tiling", + "dwm", + "sway", + "i3", + "keyboard", + "linux" + ], + "repository": "https://github.com/davquar/tilefox", + "pushed_at": "2022-10-21T20:00:50Z", + "stargazers_count": 20, + "avatar": "https://avatars.githubusercontent.com/u/30431538?v=4" + }, + { + "title": "AestheticFox", + "link": "https://github.com/AidanMercer/AestheticFox", + "description": "A minamist and aesthetic userstyle theme for Firefox", + "image": "assets/img/themes/AestheticFox.webp", + "tags": [ + "clean", + "compact", + "aestheticfox", + "minimal", + "minimalistic", + "aesthetic" + ], + "repository": "https://github.com/AidanMercer/AestheticFox", + "pushed_at": "2023-05-22T18:16:55Z", + "stargazers_count": 31, + "avatar": "https://avatars.githubusercontent.com/u/96552673?v=4" + }, + { + "title": "Firefox Onebar", + "link": "https://git.gay/freeplay/Firefox-Onebar", + "description": "A single bar for Firefox's UI.", + "image": "assets/img/themes/onebar.webp", + "tags": [ + "Freeplay", + "oneline", + "onebar", + "compact", + "minimal" + ], + "repository": "https://git.gay/freeplay/Firefox-Onebar", + "pushed_at": "2024-05-11T01:01:47Z", + "stargazers_count": -1, + "avatar": "" + }, + { + "title": "Dracula", + "link": "https://github.com/jannikbuscha/firefox-dracula", + "description": "A Firefox CSS Theme that aims to recreate the look and feel of the Chromium version of Microsoft Edge in the style of Dracula.", + "image": "assets/img/themes/dracula.webp", + "tags": [ + "edge", + "dark", + "microsoft", + "dracula" + ], + "repository": "https://github.com/jannikbuscha/firefox-dracula", + "pushed_at": "2024-07-10T07:08:42Z", + "stargazers_count": 20, + "avatar": "https://avatars.githubusercontent.com/u/74017697?v=4" + }, + { + "title": "rounded-fox", + "link": "https://github.com/Etesam913/rounded-fox", + "description": "A minimalist theme that uses animation to hide visual clutter.", + "image": "assets/img/themes/rounded_fox.webp", + "tags": [ + "clean", + "compact", + "minimalist", + "dark", + "light", + "animation" + ], + "repository": "https://github.com/Etesam913/rounded-fox", + "pushed_at": "2023-09-02T19:29:12Z", + "stargazers_count": 91, + "avatar": "https://avatars.githubusercontent.com/u/55665282?v=4" + }, + { + "title": "Three Rows Simple Compact Clean CSS", + "link": "https://github.com/hornster02/Firefox-Three-Rows-Simple-Compact-Clean-CSS", + "description": "A compact theme based on use multiple rows", + "image": "assets/img/themes/Three_Rows.webp", + "tags": [ + "simple", + "compact", + "minimalist", + "rows" + ], + "repository": "https://github.com/hornster02/Firefox-Three-Rows-Simple-Compact-Clean-CSS", + "pushed_at": "2024-09-01T18:45:28Z", + "stargazers_count": 15, + "avatar": "https://avatars.githubusercontent.com/u/127822397?v=4" + }, + { + "title": "Bali10050's theme", + "link": "https://github.com/Bali10050/FirefoxCSS", + "description": "A minimal looking oneliner, with modular code for easy editing", + "image": "assets/img/themes/Bali10050sPreview.webp", + "tags": [ + "Bali10050", + "oneline", + "light", + "dark", + "linux", + "windows", + "rounded", + "proton", + "responsive", + "minimalistic" + ], + "repository": "https://github.com/Bali10050/FirefoxCSS", + "pushed_at": "2024-10-03T15:49:24Z", + "stargazers_count": 261, + "avatar": "https://avatars.githubusercontent.com/u/110120798?v=4" + }, + { + "title": "ViceFox", + "link": "https://vicefox.vercel.app", + "description": "Don't ask why it's called 'ViceFox'", + "image": "assets/img/themes/ViceFox.webp", + "tags": [ + "clean", + "compact", + "safari", + "minimal", + "macos" + ], + "repository": "https://github.com/jtlw99/vicefox", + "pushed_at": "2023-12-15T05:13:17Z", + "stargazers_count": 44, + "avatar": "https://avatars.githubusercontent.com/u/93564256?v=4" + }, + { + "title": "DarkMatter", + "link": "https://github.com/BloodyHell619/Firefox-Theme-DarkMatter", + "description": "An intensively worked on, and highly customized dark theme made for Firefox Proton, stretching darkness into every corner of the browser and perfecting even the tiniest details ", + "image": "assets/img/themes/darkmatter.webp", + "tags": [ + "dark", + "Vertical", + "squared", + "proton" + ], + "repository": "https://github.com/BloodyHell619/Firefox-Theme-DarkMatter", + "pushed_at": "2024-01-19T11:44:43Z", + "stargazers_count": 67, + "avatar": "https://avatars.githubusercontent.com/u/65298540?v=4" + }, + { + "title": "Fox11", + "link": "https://github.com/Neikon/Fox11", + "description": "A Firefox CSS themes with auto-color, Mica, auto-hide nav-bar support. Inspired in firefox-one , Edge/Chrome restyle 2023.", + "image": "assets/img/themes/fox11.webp", + "tags": [ + "vivaldi", + "proton", + "minimal", + "autocolor", + "dark", + "light", + "mica", + "adaptive", + "transparency", + "neikon", + "one-line" + ], + "repository": "https://github.com/Neikon/Fox11", + "pushed_at": "2023-09-03T09:40:57Z", + "stargazers_count": 148, + "avatar": "https://avatars.githubusercontent.com/u/1765319?v=4" + }, + { + "title": "zap's cool photon theme", + "link": "https://github.com/zapSNH/zapsCoolPhotonTheme", + "description": "Party like it's Firefox 57-88!", + "image": "assets/img/themes/zaps-photon.webp", + "tags": [ + "photon", + "compact", + "squared", + "quantum" + ], + "repository": "https://github.com/zapSNH/zapsCoolPhotonTheme", + "pushed_at": "2024-10-02T13:13:04Z", + "stargazers_count": 69, + "avatar": "https://avatars.githubusercontent.com/u/134786889?v=4" + }, + { + "title": "Firefox-ONE", + "link": "https://github.com/Godiesc/firefox-one", + "description": "Dress Firefox with the Opera One skin", + "image": "assets/img/themes/firefox-one.webp", + "tags": [ + "Godiesc", + "opera", + "one", + "opera-one", + "firefox", + "firefox-one", + "theme", + "adaptive", + "tree", + "tabs" + ], + "repository": "https://github.com/Godiesc/firefox-one", + "pushed_at": "2024-10-06T02:05:32Z", + "stargazers_count": 302, + "avatar": "https://avatars.githubusercontent.com/u/22057609?v=4" + }, + { + "title": "Essence", + "link": "https://github.com/JarnotMaciej/Essence", + "description": "Compact, beautiful and minimalistic theme for the Firefox web browser.", + "image": "assets/img/themes/essence.webp", + "tags": [ + "compact", + "minimal", + "light", + "modern", + "oneline", + "rounded", + "clean" + ], + "repository": "https://github.com/JarnotMaciej/Essence", + "pushed_at": "2024-07-08T10:58:01Z", + "stargazers_count": 29, + "avatar": "https://avatars.githubusercontent.com/u/92025751?v=4" + }, + { + "title": "minimal-one-line-firefox", + "link": "https://github.com/ttntm/minimal-one-line-firefox", + "description": "A minimal oneliner, to minimizing the space used for url and tab bar", + "image": "assets/img/themes/molff.webp", + "tags": [ + "oneline", + "light", + "dark", + "squared", + "compact", + "minimalistic" + ], + "repository": "https://github.com/ttntm/minimal-one-line-firefox", + "pushed_at": "2024-06-15T16:07:30Z", + "stargazers_count": 42, + "avatar": "https://avatars.githubusercontent.com/u/41571384?v=4" + }, + { + "title": "RealFire", + "link": "https://github.com/Hakanbaban53/RealFire", + "description": "A minimalist animated oneliner theme for Firefox perfectly matching Real Dark", + "image": "assets/img/themes/RealFire-main.webp", + "tags": [ + "oneline", + "responsive", + "light", + "dark", + "animation", + "rounded", + "compact", + "minimalistic", + "black" + ], + "repository": "https://github.com/Hakanbaban53/RealFire", + "pushed_at": "2024-09-09T17:35:33Z", + "stargazers_count": 28, + "avatar": "https://avatars.githubusercontent.com/u/93117749?v=4" + }, + { + "title": "Firefox-Alpha", + "link": "https://github.com/Tagggar/Firefox-Alpha", + "description": "Super clear desktop browser with zero buttons and gesture controls", + "image": "assets/img/themes/Firefox-Alpha.webp", + "tags": [ + "Tagggar", + "alpha", + "responsive", + "light", + "dark", + "animation", + "rounded", + "compact", + "clear", + "clean", + "minimalistic", + "minimal", + "simple", + "gestures" + ], + "repository": "https://github.com/Tagggar/Firefox-Alpha", + "pushed_at": "2024-05-26T06:03:23Z", + "stargazers_count": 233, + "avatar": "https://avatars.githubusercontent.com/u/81634877?v=4" + }, + { + "title": "Dark Star", + "link": "https://gitlab.com/ivelieu/dark-star-firefox-skin", + "description": "A color-customizable, zero navbar padding skin, modified from Starry Fox", + "image": "assets/img/themes//11608darkstar_3.webp", + "tags": [ + "Ivelieu", + "dark", + "minimal", + "zeropadding", + "customizable" + ], + "repository": "https://gitlab.com/ivelieu/dark-star-firefox-skin", + "pushed_at": "2023-11-19T00:38:22.034Z", + "stargazers_count": 1, + "avatar": "/uploads/-/system/user/avatar/18385334/avatar.png" + }, + { + "title": "ImpossibleFox", + "link": "https://github.com/Naezr/ImpossibleFox", + "description": "A simple and fast one-line theme for Firefox inspired by Safari's compact layout. ", + "image": "assets/img/themes/ImpossibleFox.webp", + "tags": [ + "Naezr", + "dark", + "light", + "oneline" + ], + "repository": "https://github.com/Naezr/ImpossibleFox", + "pushed_at": "2024-05-24T15:24:49Z", + "stargazers_count": 24, + "avatar": "https://avatars.githubusercontent.com/u/95460152?v=4" + }, + { + "title": "SideFox", + "link": "https://github.com/rainbowflesh/Me-Personal-Firefox-Settup", + "description": "MS Edge style, sidebar, blur, and more.", + "image": "assets/img/themes/sidefox.webp", + "tags": [ + "sidebar", + "animated", + "simple", + "responsive", + "linux", + "windows", + "macos" + ], + "repository": "https://github.com/rainbowflesh/Me-Personal-Firefox-Settup", + "pushed_at": "2024-10-03T17:19:20Z", + "stargazers_count": 21, + "avatar": "https://avatars.githubusercontent.com/u/20819692?v=4" + }, + { + "title": "arcadia", + "link": "https://github.com/tyrohellion/arcadia", + "description": "Minimal Firefox theme and user.js focused on speed and design", + "image": "assets/img/themes/arcadia.webp", + "tags": [ + "tyro", + "dark", + "minimal", + "clean", + "hovercards", + "simple", + "compact", + "minimalistic" + ], + "repository": "https://github.com/tyrohellion/arcadia", + "pushed_at": "2024-08-31T06:56:13Z", + "stargazers_count": 13, + "avatar": "https://avatars.githubusercontent.com/u/51808054?v=4" + }, + { + "title": "Firefox Plus", + "link": "https://github.com/amnweb/firefox-plus", + "description": "Firefox Plus, CSS tweaks for Firefox ", + "image": "assets/img/themes//6299firefox-26-11-2023.webp", + "tags": [ + "firefox", + "firefox-customization", + "minimal", + "firefox-theme", + "dark" + ], + "repository": "https://github.com/amnweb/firefox-plus", + "pushed_at": "2024-09-21T17:36:10Z", + "stargazers_count": 204, + "avatar": "https://avatars.githubusercontent.com/u/16545063?v=4" + }, + { + "title": "Shina Fox", + "link": "https://github.com/Shina-SG/Shina-Fox", + "description": "A Minimal, Cozy, Vertical Optimized Firefox Theme", + "image": "assets/img/themes/Shina.webp", + "tags": [ + "Shina", + "Vertical", + "Sidebery", + "Minimal", + "Dark", + "Light", + "Adaptive" + ], + "repository": "https://github.com/Shina-SG/Shina-Fox", + "pushed_at": "2024-05-24T23:41:47Z", + "stargazers_count": 406, + "avatar": "https://avatars.githubusercontent.com/u/135497382?v=4" + }, + { + "title": "ArnimFox", + "link": "https://github.com/SecondMikasa/ArnimFox", + "description": "A Minimalist Dark Themed Firefox enabling vertical tabs support and modern URL Bar", + "image": "assets/img/themes/ArnimFox.webp", + "tags": [ + "Minimalistic", + "Vertical", + "Sidebery", + "Dark", + "Sidebar" + ], + "repository": "https://github.com/SecondMikasa/ArnimFox", + "pushed_at": "2024-01-28T10:20:05Z", + "stargazers_count": 8, + "avatar": "https://avatars.githubusercontent.com/u/129872339?v=4" + }, + { + "title": "Firefox Rounded Theme", + "link": "https://github.com/Khalylexe/Firefox-Rounded-Theme", + "description": "Just a Firefox CSS to make it more rounded ;) ", + "image": "assets/img/themes/Khalyl.webp", + "tags": [ + "Khalylexe", + "Dark", + "Rounded", + "firefox" + ], + "repository": "https://github.com/Khalylexe/Firefox-Rounded-Theme", + "pushed_at": "2024-02-09T20:20:24Z", + "stargazers_count": 21, + "avatar": "https://avatars.githubusercontent.com/u/119526243?v=4" + }, + { + "title": "ShyFox", + "link": "https://github.com/Naezr/ShyFox", + "description": "A very shy little theme that hides the entire browser interface in the window border", + "image": "assets/img/themes/shyfox.webp", + "tags": [ + "Naezr", + "minimal" + ], + "repository": "https://github.com/Naezr/ShyFox", + "pushed_at": "2024-10-06T08:53:13Z", + "stargazers_count": 1464, + "avatar": "https://avatars.githubusercontent.com/u/95460152?v=4" + }, + { + "title": "greenyfox", + "link": "https://github.com/alan-ar1/greenyfox", + "description": "A modern dark theme with macos title bar buttons and Iosevka font", + "image": "assets/img/themes//9037DGTAHYA.webp", + "tags": [ + "alan-ar1", + "Dark", + "title-bar", + "minimal", + "Iosevka" + ], + "repository": "https://github.com/alan-ar1/greenyfox", + "pushed_at": "2024-01-30T17:55:07Z", + "stargazers_count": 4, + "avatar": "https://avatars.githubusercontent.com/u/110337684?v=4" + }, + { + "title": "98/95fox", + "link": "https://github.com/osem598/Firefox-98", + "description": "Chicago 95 & Windows95/98-like theme for firefox", + "image": "assets/img/themes/ff95.webp", + "tags": [ + "osem598", + "Light", + "Retro", + "Chicago", + "98", + "95" + ], + "repository": "https://github.com/osem598/Firefox-98", + "pushed_at": "2024-08-26T00:25:34Z", + "stargazers_count": 26, + "avatar": "https://avatars.githubusercontent.com/u/67332812?v=4" + }, + { + "title": "ArcWTF", + "link": "https://github.com/KiKaraage/ArcWTF/", + "description": "UserChrome.css theme to bring Arc Browser look from Windows to Firefox! ", + "image": "assets/img/themes/arcwtf.webp", + "tags": [ + "KiKaraage", + "dark", + "light", + "Arc Browser", + "Sidebery", + "vertical tabs", + "autohide", + "minimal" + ], + "repository": "https://github.com/KiKaraage/ArcWTF/", + "pushed_at": "2024-09-02T12:22:04Z", + "stargazers_count": 1144, + "avatar": "https://avatars.githubusercontent.com/u/10529881?v=4" + }, + { + "title": "FrameUI for Firefox", + "link": "https://github.com/FineFuturity/FrameUIForFirefox/", + "description": "A new way to view your web content. Like looking at photos printed from an old Polaroid camera.", + "image": "assets/img/themes/FrameUIScreenshot.webp", + "tags": [ + "FineFuturity", + "one line", + "vertical tabs", + "Sidebery", + "Tab Center Reborn", + "toolbars on bottom", + "immersive", + "minimal" + ], + "repository": "https://github.com/FineFuturity/FrameUIForFirefox/", + "pushed_at": "2024-03-21T13:45:27Z", + "stargazers_count": 56, + "avatar": "https://avatars.githubusercontent.com/u/19298107?v=4" + }, + { + "title": "arcfox", + "link": "https://github.com/betterbrowser/arcfox", + "description": "make firefox flow like arc", + "image": "assets/img/themes/arcfox.webp", + "tags": [ + "nikollesan", + "dark", + "light", + "luanderfarias", + "bettterbrowser" + ], + "repository": "https://github.com/betterbrowser/arcfox", + "pushed_at": "2024-09-13T02:07:11Z", + "stargazers_count": 974, + "avatar": "https://avatars.githubusercontent.com/u/126220586?v=4" + }, + { + "title": "WhiteSur", + "link": "https://github.com/vinceliuice/WhiteSur-firefox-theme", + "description": "A MacOSX Safari theme for Firefox 80+", + "image": "assets/img/themes/whitesur_vinceliuice.webp", + "tags": [ + "vinceliuice", + "dark", + "light", + "MacOSX ", + "Monterey", + "safari", + "mac", + "oneline" + ], + "repository": "https://github.com/vinceliuice/WhiteSur-firefox-theme", + "pushed_at": "2024-09-05T12:40:12Z", + "stargazers_count": 343, + "avatar": "https://avatars.githubusercontent.com/u/7604295?v=4" + }, + { + "title": "Another Oneline", + "link": "https://github.com/mimipile/firefoxCSS", + "description": "Another simple, oneline, minimal, keyboard-centered Firefox CSS theme.", + "image": "assets/img/themes/screenshot-site.webp", + "tags": [ + "mimipile", + "dark", + "light", + "adaptative", + "onebar", + "oneline", + "minimal", + "keyboard", + "keyboard centered" + ], + "repository": "https://github.com/mimipile/firefoxCSS", + "pushed_at": "2024-08-26T09:06:51Z", + "stargazers_count": 89, + "avatar": "https://avatars.githubusercontent.com/u/74282993?v=4" + }, + { + "title": "MacFox-Theme", + "link": "https://github.com/d0sse/macFox-theme", + "description": "Safari-like minimalistic theme with system accent color", + "image": "assets/img/themes/d0sse_mac_fox_screen.webp", + "tags": [ + "dark", + "light", + "accent", + "minimal", + "macos", + "safari", + "mac", + "autocolor" + ], + "repository": "https://github.com/d0sse/macFox-theme", + "pushed_at": "2024-09-15T10:06:38Z", + "stargazers_count": 20, + "avatar": "https://avatars.githubusercontent.com/u/16508608?v=4" + }, + { + "title": "EdgyArc Fr", + "link": "https://github.com/artsyfriedchicken/EdgyArc-fr/", + "description": "Combining the sleekness of Microsoft Edge and the aesthetics of the Arc browser", + "image": "assets/img/themes/edgyarc-fr.webp", + "tags": [ + "artsyFriedChicken", + "dark", + "light", + "macOS", + "mac", + "arc", + "edge", + "translucent", + "blur", + "sidebery", + "Vertical Tabs" + ], + "repository": "https://github.com/artsyfriedchicken/EdgyArc-fr/", + "pushed_at": "2024-06-29T17:41:05Z", + "stargazers_count": 591, + "avatar": "https://avatars.githubusercontent.com/u/100123017?v=4" + }, + { + "title": "Blurfox", + "link": "https://github.com/safak45xx/Blurfox", + "description": "A Firefox theme", + "image": "assets/img/themes/blurfox.webp", + "tags": [ + "blur", + "minimal", + "oneline" + ], + "repository": "https://github.com/safak45xx/Blurfox", + "pushed_at": "2024-05-25T09:40:57Z", + "stargazers_count": 106, + "avatar": "https://avatars.githubusercontent.com/u/141409983?v=4" + }, + { + "title": "FF Ultima", + "link": "https://github.com/soulhotel/FF-ULTIMA", + "description": "Native Vertical Tabs, keep your sidebar, no extensions. No overthinking. FF Ultima", + "image": "assets/img/themes/FF_Ultima.webp", + "tags": [ + "vertical tabs", + "minimal", + "lightweight", + "customizable", + "dark", + "light" + ], + "repository": "https://github.com/soulhotel/FF-ULTIMA", + "pushed_at": "2024-10-07T09:37:34Z", + "stargazers_count": 516, + "avatar": "https://avatars.githubusercontent.com/u/155501797?v=4" + }, + { + "title": "Firefox Xtra Compact", + "link": "https://github.com/CarterSnich/firefox-xtra-compact", + "description": "Aims to make Firefox more compact and give a tiny bit more web view area for low-screen devices.", + "image": "assets/img/themes/xtracompact.webp", + "tags": [ + "CarterSnich", + "compact", + "themeless" + ], + "repository": "https://github.com/CarterSnich/firefox-xtra-compact", + "pushed_at": "2024-06-01T10:09:51Z", + "stargazers_count": 14, + "avatar": "https://avatars.githubusercontent.com/u/52433531?v=4" + }, + { + "title": "Aero Firefox", + "link": "https://github.com/SandTechStuff/AeroFirefox", + "description": "Brings the Windows 7 titlebar buttons to modern versions of Firefox", + "image": "assets/img/themes/aeroFirefox.webp", + "tags": [ + "aero", + "dark", + "light", + "lightweight", + "windows7", + "minimal" + ], + "repository": "https://github.com/SandTechStuff/AeroFirefox", + "pushed_at": "2024-07-16T07:53:59Z", + "stargazers_count": 4, + "avatar": "https://avatars.githubusercontent.com/u/164842290?v=4" + }, + { + "title": "PotatoFox", + "link": "https://codeberg.org/awwpotato/PotatoFox", + "description": "A compact and minimal firefox theme using Sidebery", + "image": "assets/img/themes/PotatoFox.webp", + "tags": [ + "minimal", + "compact", + "vertical tabs", + "Sidebery", + "arc" + ], + "repository": "https://codeberg.org/awwpotato/PotatoFox", + "pushed_at": "2024-10-01T17:44:25Z", + "stargazers_count": 23, + "avatar": "https://codeberg.org/avatars/a740ac100c2158f4a56d1e9ae31c5ad7f79ab7c463e793223cb97828dc623bdb" + }, + { + "title": "Minimal-Arc", + "link": "https://github.com/zayihu/Minimal-Arc", + "description": "Minimal light Firefox theme with Arc like design with vertical tabs", + "image": "assets/img/themes/minimal_arc.webp", + "tags": [ + "minimal", + "compact", + "vertical-tabs", + "Sidebery", + "light", + "Arc Browser" + ], + "repository": "https://github.com/zayihu/Minimal-Arc", + "pushed_at": "2024-09-07T06:13:59Z", + "stargazers_count": 45, + "avatar": "https://avatars.githubusercontent.com/u/167391787?v=4" + }, + { + "title": "SnowFox", + "link": "https://github.com/naveensagar765/SnowFox", + "description": "Modern blue glass theme with side bookmark bar", + "image": "assets/img/themes/snowfox.webp", + "tags": [ + "moder", + "blue", + "side-bookmark-bar", + "home page" + ], + "repository": "https://github.com/naveensagar765/SnowFox", + "pushed_at": "2024-08-09T05:27:54Z", + "stargazers_count": 5, + "avatar": "https://avatars.githubusercontent.com/u/155926112?v=4" + }, + { + "title": "AnimatedFox", + "link": "https://github.com/RemyIsCool/AnimatedFox", + "description": "A minimal Firefox/LibreWolf theme with satisfying animations and a hidden URL bar.", + "image": "assets/img/themes/animatedfox.webp", + "tags": [ + "RemyIsCool", + "dark", + "minimal", + "hidden url bar", + "animations" + ], + "repository": "https://github.com/RemyIsCool/AnimatedFox", + "pushed_at": "2024-07-16T13:55:19Z", + "stargazers_count": 148, + "avatar": "https://avatars.githubusercontent.com/u/97812130?v=4" + }, + { + "title": "Quietfox Reborn", + "link": "https://github.com/TheGITofTeo997/quietfoxReborn", + "description": "Resurrecting a very Clean Firefox userChrome Mod ", + "image": "assets/img/themes/20053home.webp", + "tags": [ + "Teo", + "sleek", + "minimal", + "quiet" + ], + "repository": "https://github.com/TheGITofTeo997/quietfoxReborn", + "pushed_at": "2024-10-03T10:40:19Z", + "stargazers_count": 65, + "avatar": "https://avatars.githubusercontent.com/u/26879664?v=4" + }, + { + "title": "GlassyFox", + "link": "https://github.com/AnhNguyenlost13/GlassyFox", + "description": "Keeps the original new tab page layout while making it look as glassy as possible.", + "image": "assets/img/themes/glassyfox.webp", + "tags": [ + "blur", + "AnhNguyenlost13" + ], + "repository": "https://github.com/AnhNguyenlost13/GlassyFox", + "pushed_at": "2024-10-04T03:38:39Z", + "stargazers_count": 5, + "avatar": "https://avatars.githubusercontent.com/u/94160753?v=4" + }, + { + "title": "98/95fox Xtra Compact", + "link": "https://github.com/programneer/Firefox-98-Xtra-Compact", + "description": "The mix of nostalgia and compact.", + "image": "assets/img/themes/ff95xtracompact.webp", + "tags": [ + "Programneer", + "Light", + "Retro", + "Chicago", + "98", + "95", + "compact" + ], + "repository": "https://github.com/programneer/Firefox-98-Xtra-Compact", + "pushed_at": "2024-04-19T10:50:06Z", + "stargazers_count": 3, + "avatar": "https://avatars.githubusercontent.com/u/132811907?v=4" + }, + { + "title": "FireFox OneLine Navbar", + "link": "https://github.com/FawazBinSaleem/FireFoxOneLinerCSS", + "description": "A compact oneliner navbar css theme.", + "image": "assets/img/themes/fireFoxOneLinerCSS.webp", + "tags": [ + "oneline", + "black color", + "amoled", + "oneliner", + "navbar", + "One Line", + "compact" + ], + "repository": "https://github.com/FawazBinSaleem/FireFoxOneLinerCSS", + "pushed_at": "2024-08-22T14:19:05Z", + "stargazers_count": 9, + "avatar": "https://avatars.githubusercontent.com/u/48177454?v=4" + }, + { + "title": "Monochrome Neubrutalism Firefox Simple", + "link": "https://github.com/Kaskapa/Monochrome-Neubrutalism-Firefox-Theme", + "description": "A simple light theme I made to explore the world of Firefox theming.", + "image": "assets/img/themes/monochromeNeubrutalism.webp", + "tags": [ + "light", + "neubrutalislm", + "monochrome", + "simple", + "Kaskapa" + ], + "repository": "https://github.com/Kaskapa/Monochrome-Neubrutalism-Firefox-Theme", + "pushed_at": "2024-06-02T13:53:52Z", + "stargazers_count": 7, + "avatar": "https://avatars.githubusercontent.com/u/100031511?v=4" + }, + { + "title": "minimalistest oneliner", + "link": "https://github.com/yari-dog/minimalistest-oneliner-librewolf", + "description": "buttons are for nerds.", + "image": "assets/img/themes/minimalist-oneliner.webp", + "tags": [ + "simple", + "oneliner", + "oneline", + "compact" + ], + "repository": "https://github.com/yari-dog/minimalistest-oneliner-librewolf", + "pushed_at": "2024-08-28T10:11:56Z", + "stargazers_count": 5, + "avatar": "https://avatars.githubusercontent.com/u/75224849?v=4" + }, + { + "title": "Arc UI", + "link": "https://github.com/dxdotdev/arc-ui", + "description": "Make your Firefox like the Arc Browser.", + "image": "assets/img/themes/29957ui.webp", + "tags": [ + "dxdotdev", + "arc browser", + "compact", + "modern" + ], + "repository": "https://github.com/dxdotdev/arc-ui", + "pushed_at": "2024-09-13T20:26:29Z", + "stargazers_count": 18, + "avatar": "https://avatars.githubusercontent.com/u/157044645?v=4" + }, + { + "title": "Material Fox Updated", + "link": "https://github.com/edelvarden/material-fox-updated", + "description": "🦊 Firefox user CSS theme looks similar to Chrome.", + "image": "assets/img/themes/material-fox-updated-preview.webp", + "tags": [ + "dark", + "light", + "rtl", + "customizable", + "material", + "material-design", + "refresh", + "modern", + "updated" + ], + "repository": "https://github.com/edelvarden/material-fox-updated", + "pushed_at": "2024-10-03T14:14:57Z", + "stargazers_count": 302, + "avatar": "https://avatars.githubusercontent.com/u/42596339?v=4" + } ] From 2c8cc633e73066d171702ccf529d4bb5973e0ddd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20F=2E=20=28BeyondMagic/koetemagie=29?= Date: Wed, 9 Oct 2024 05:27:43 -0300 Subject: [PATCH 10/23] themes.json: update info for freeplay/firefox-onebar --- themes.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/themes.json b/themes.json index d5742a5..14f0cf0 100644 --- a/themes.json +++ b/themes.json @@ -1245,8 +1245,8 @@ ], "repository": "https://git.gay/freeplay/Firefox-Onebar", "pushed_at": "2024-05-11T01:01:47Z", - "stargazers_count": -1, - "avatar": "" + "stargazers_count": 8, + "avatar": "https://git.gay/avatars/25ef717d14080c74d7a215792ff28c5ba2590585985036074bf9c0723fd9c582?size=512" }, { "title": "Dracula", From 8880002c912cd23313769bfade852be1d57dc03a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20F=2E=20=28BeyondMagic/koetemagie=29?= Date: Wed, 9 Oct 2024 06:30:41 -0300 Subject: [PATCH 11/23] feat(sorting): update, if necessary, instead of force-adding fields and values --- scripts/sort_themes.nu | 53 ++++++++++++++++++++++++++++++------------ themes.json | 2 +- 2 files changed, 39 insertions(+), 16 deletions(-) diff --git a/scripts/sort_themes.nu b/scripts/sort_themes.nu index 5c93b34..498edbd 100644 --- a/scripts/sort_themes.nu +++ b/scripts/sort_themes.nu @@ -89,7 +89,7 @@ export def codeberg [ export def clone [ link: string # Git link of the repository. --temp: string = '/tmp/firefoxcss-store/' # Temporary folder to save themes. -]: record -> record { +]: record -> string { mkdir $temp @@ -114,13 +114,7 @@ export def clone [ cd $folder } - let pushed_at = ^git show --quiet --date='format-local:%Y-%m-%dT%H:%M:%SZ' --format="%cd" - - { - pushed_at: $pushed_at - stargazers_count: -1 - avatar: "" - } + ^git show --quiet --date='format-local:%Y-%m-%dT%H:%M:%SZ' --format="%cd" } # Parse link of repository. @@ -150,9 +144,11 @@ export def main [ let data = open $source | each {|item| + mut item = $item + let link = $item.repository - print $"Cloning ($link)." + print $"Retrieving information from '($link)'." let info = if ($link | str contains 'github') { sleep $delay @@ -165,18 +161,45 @@ export def main [ $link | parse_link | codeberg $codeberg } else { print "Using git cloning." - $link | parse_link | clone $link + + let pushed_at = $link | parse_link | clone $link + + # If this theme hasn't been manually updated yet, + # which means, added the values for stars and avatar url, + # then, assign default value. + if not ('avatar' in $item) { + print "Need to update 'avatar' and 'stargazers_count'." + { + pushed_at: $pushed_at + stargazers_count: -1 + avatar: '' + } + # Default values for manually updated theme, but + # the field 'pushed_at'. + } else { + { + pushed_at: $pushed_at + stargazers_count: $item.stargazers_count + avatar: $item.avatar + } + } } + # Failed all attempts at retrieving information for this repository, + # Probably needs removal or it's deleted already, + # so it will remove automatically. if ($info | is-empty) { - print $"Could not clone this repository." + print $"Could not clone this repository!" print "" } else { print "" - { - ...$item - ...$info - } + + # Update sorting columns. + $item | update 'pushed_at' $info.pushed_at + $item | update 'stargazers_count' $info.stargazers_count + $item | update 'avatar' $info.avatar + + $item } } diff --git a/themes.json b/themes.json index 14f0cf0..f2db4d5 100644 --- a/themes.json +++ b/themes.json @@ -2101,4 +2101,4 @@ "stargazers_count": 302, "avatar": "https://avatars.githubusercontent.com/u/42596339?v=4" } -] +] \ No newline at end of file From 2b828e1b07fcee286c4b7f4e2bdfe055c03d1b6b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20F=2E=20=28BeyondMagic/koetemagie=29?= Date: Fri, 11 Oct 2024 01:12:10 -0300 Subject: [PATCH 12/23] fix(pug): replace fontawesome --- dev/pug/layout/default.pug | 2 +- docs/disclaimer.html | 2 +- docs/index.html | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dev/pug/layout/default.pug b/dev/pug/layout/default.pug index e5859ea..dcc5f24 100644 --- a/dev/pug/layout/default.pug +++ b/dev/pug/layout/default.pug @@ -25,4 +25,4 @@ html include ../includes/footer script(src='assets/js/main.js') - script(src='https://kit.fontawesome.com/1c8bd05656.js' crossorigin='anonymous') + script(src='https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/js/all.min.js' type="text/javascript") diff --git a/docs/disclaimer.html b/docs/disclaimer.html index 96ae8f0..211f911 100644 --- a/docs/disclaimer.html +++ b/docs/disclaimer.html @@ -70,6 +70,6 @@

Contact Us

- + \ No newline at end of file diff --git a/docs/index.html b/docs/index.html index a5c0d19..ddea5c6 100644 --- a/docs/index.html +++ b/docs/index.html @@ -30,6 +30,6 @@

FirefoxCSS Store

- + \ No newline at end of file From 25021884520b4d0052fe3a9062b53e154ea0af90 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20F=2E=20=28BeyondMagic/koetemagie=29?= Date: Fri, 11 Oct 2024 03:27:02 -0300 Subject: [PATCH 13/23] feat(sorting): add update (pushed_at) and stars sorting kinds --- dev/js/main.js | 224 +++++++++++++++++++++++++++++-------------------- 1 file changed, 134 insertions(+), 90 deletions(-) diff --git a/dev/js/main.js b/dev/js/main.js index 2cd8e1b..78717ea 100644 --- a/dev/js/main.js +++ b/dev/js/main.js @@ -81,109 +81,153 @@ function createLightbox (id) { * ====================== */ - document.getElementById('searchInput').addEventListener('keydown', e => { + const search = /** @type {HTMLInputElement} */ (document.getElementById('searchInput')) - if (e.key === "Enter") toggleSortType(false) + search.addEventListener('keydown', e => { + + if (e.key === "Enter") + sort(search.value) }) - document.getElementById('searchButton').addEventListener('click', () => toggleSortType(false)) + document.getElementById('searchButton').addEventListener('click', () => (false)) /* Load Content * ============ */ - // add our sorting button - const sortTrigger = document.getElementById('js-sortSwitcher') - sortTrigger.addEventListener('click', () => toggleSortType(true)) - - // When localstorage is not set, use "latest" order type - if (!localStorage['sort']) localStorage['sort'] = 'latest' - - function repeatToggle (nextType) { - - localStorage['sort'] = nextType - return toggleSortType(false) - - } - - function toggleSortType (change) { - - if (document.querySelectorAll('.card')) - document.querySelectorAll('.card').forEach(e => e.remove()); - - fetch('themes.json') - .then(data => data.json()) - .then(parsedData => { - - const search = document.getElementById('searchInput').value - - if (search) { - - function matches (text, partial) { return text.toLowerCase().indexOf(partial.toLowerCase()) > -1 } - - const parsedAsArray = Object.entries(parsedData) - let searchResults = parsedAsArray.filter(element => matches(`${element[1].title}, ${element[1].tags}`, search)) - - searchResults.forEach(result => { - - const card = new Card(result[1], +result[0]) - card.render(outputContainer) - - }) - - sortTrigger.title = `"${search}"` - - return - - } - - switch (localStorage['sort']) { - - // sort from the oldest theme added - case 'latest': - if (change) return repeatToggle('random') - parsedData.reverse() - break; - - // sort randomly - case 'random': - if (change) return repeatToggle('oldest') - for (let i = parsedData.length - 1; i > 0; i--) { - - const j = Math.floor(Math.random() * (i + 1)); - [parsedData[i], parsedData[j]] = [parsedData[j], parsedData[i]] - - } - break; - - // sort from the most recent theme added - default: - if (change) return repeatToggle('latest'); - - } - - // TODO: make a better way to preview the current sorting - sortTrigger.title = localStorage['sort'] - - parsedData.forEach((entry, index) => { - - const card = new Card (entry, index) - card.render(outputContainer) + /* + * If sorting is not set yet in `localStorage`, + * then use as default `latest` kind. + */ + if (!localStorage.sort) + localStorage.sort = 'latest' + + /* + * Make the sort icon a button. + */ + const sort_trigger = /** @type {HTMLElement} */ (document.getElementById('js-sortSwitcher')) + sort_trigger.addEventListener('click', () => toggle_sorting()) + sort() + + /** + * Toggle the sorting type of the themes. + **/ + function toggle_sorting () { + + switch (localStorage.sort) + { + case 'latest': + localStorage.sort = 'updated' + break + case 'updated': + localStorage.sort = 'stars' + break + case 'stars': + localStorage.sort = 'random' + break; + case 'random': + localStorage.sort = 'oldest' + break + default: + localStorage.sort = 'latest' + } + + return sort() + + } + + /** + * Toggle the sorting type of the themes. + * + * @param {string=} filter Term to filter the themes. + **/ + function sort (filter) { + + sort_trigger.title = `"${localStorage.sort}"` + + // Remove all themes cards from the page. + const cards_container = document.getElementById('themes_container') + if (cards_container) + cards_container.innerHTML = '' + + fetch('themes.json') + .then(data => data.json()) + .then(data => { + + data = Object.entries(data) + + if (filter) { + + /** + * Match any substring (partial) from a string (text). + * @param {string} text + * @param {string} partial + */ + function matches (text, partial) { + return text.toLowerCase().indexOf(partial.toLowerCase()) > -1 + } + + data = data.filter(element => matches(`${element[1].title}, ${element[1].tags}`, search.value)) + + } + + switch (localStorage.sort) { + + /* + * Sort from the most recent theme added. + */ + case 'latest': + data.reverse() + break + + /* + * Ascending sorting of stars from repositories. + */ + case 'updated': + // item1.attr.localeCompare(item2.attr); + data.sort((a, b) => b[1].pushed_at.localeCompare(a[1].pushed_at)) + break + + /* + * Ascending sorting of stars from repositories. + */ + case 'stars': + data.sort((a, b) => b[1].stargazers_count - a[1].stargazers_count) + break + + /* + * Randomly sorting of themes. + */ + case 'random': + for (let i = data.length - 1; i > 0; i--) { + + const j = Math.floor(Math.random() * (i + 1)); + [data[i], data[j]] = [data[j], data[i]] + + } + break + + /* + * Sort from the least recent theme added (oldest). + * Since it's sorted like this by default from the file, do nothing. + */ + default: + + } + + for (const [index, entry] of data) + { + const card = new Card(entry, index) + card.render(outputContainer) + } + + }) +} - }) - - }) - } - // add themes const outputContainer = document.getElementById('themes_container') - if (outputContainer) toggleSortType(false); - - - - /* Theme Handling * ============== */ From 28160ea8cfeb971984753c909a0eb250742a89ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20F=2E=20=28BeyondMagic/koetemagie=29?= Date: Fri, 11 Oct 2024 03:27:25 -0300 Subject: [PATCH 14/23] build(site): add sorting features --- docs/assets/js/main.js | 165 ++-- docs/assets/js/main.min.js | 2 +- docs/themes.json | 1595 +++++++++++++++++++++++++++++++----- 3 files changed, 1529 insertions(+), 233 deletions(-) diff --git a/docs/assets/js/main.js b/docs/assets/js/main.js index 5390e98..29afb31 100644 --- a/docs/assets/js/main.js +++ b/docs/assets/js/main.js @@ -1,5 +1,12 @@ "use strict"; +function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); } +function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } +function _iterableToArrayLimit(r, l) { var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (null != t) { var e, n, i, u, a = [], f = !0, o = !1; try { if (i = (t = t.call(r)).next, 0 === l) { if (Object(t) !== t) return; f = !1; } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0); } catch (r) { o = !0, n = r; } finally { try { if (!f && null != t["return"] && (u = t["return"](), Object(u) !== u)) return; } finally { if (o) throw n; } } return a; } } +function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; } +function _createForOfIteratorHelper(o, allowArrayLike) { var it = typeof Symbol !== "undefined" && o[Symbol.iterator] || o["@@iterator"]; if (!it) { if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") { if (it) o = it; var i = 0; var F = function F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e) { throw _e; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var normalCompletion = true, didErr = false, err; return { s: function s() { it = it.call(o); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e2) { didErr = true; err = _e2; }, f: function f() { try { if (!normalCompletion && it["return"] != null) it["return"](); } finally { if (didErr) throw err; } } }; } +function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); } +function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; return arr2; } function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); } function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } } @@ -46,87 +53,149 @@ function createLightbox(id) { * ====================== */ - document.getElementById('searchInput').addEventListener('keydown', function (e) { - if (e.key === "Enter") toggleSortType(false); + var search = /** @type {HTMLInputElement} */document.getElementById('searchInput'); + search.addEventListener('keydown', function (e) { + if (e.key === "Enter") sort(search.value); }); document.getElementById('searchButton').addEventListener('click', function () { - return toggleSortType(false); + return false; }); /* Load Content * ============ */ - // add our sorting button - var sortTrigger = document.getElementById('js-sortSwitcher'); - sortTrigger.addEventListener('click', function () { - return toggleSortType(true); + /* + * If sorting is not set yet in `localStorage`, + * then use as default `latest` kind. + */ + if (!localStorage.sort) localStorage.sort = 'latest'; + + /* + * Make the sort icon a button. + */ + var sort_trigger = /** @type {HTMLElement} */document.getElementById('js-sortSwitcher'); + sort_trigger.addEventListener('click', function () { + return toggle_sorting(); }); + sort(); - // When localstorage is not set, use "latest" order type - if (!localStorage['sort']) localStorage['sort'] = 'latest'; - function repeatToggle(nextType) { - localStorage['sort'] = nextType; - return toggleSortType(false); + /** + * Toggle the sorting type of the themes. + **/ + function toggle_sorting() { + switch (localStorage.sort) { + case 'latest': + localStorage.sort = 'updated'; + break; + case 'updated': + localStorage.sort = 'stars'; + break; + case 'stars': + localStorage.sort = 'random'; + break; + case 'random': + localStorage.sort = 'oldest'; + break; + default: + localStorage.sort = 'latest'; + } + return sort(); } - function toggleSortType(change) { - if (document.querySelectorAll('.card')) document.querySelectorAll('.card').forEach(function (e) { - return e.remove(); - }); + + /** + * Toggle the sorting type of the themes. + * + * @param {string=} filter Term to filter the themes. + **/ + function sort(filter) { + sort_trigger.title = "\"".concat(localStorage.sort, "\""); + + // Remove all themes cards from the page. + var cards_container = document.getElementById('themes_container'); + if (cards_container) cards_container.innerHTML = ''; fetch('themes.json').then(function (data) { return data.json(); - }).then(function (parsedData) { - var search = document.getElementById('searchInput').value; - if (search) { + }).then(function (data) { + data = Object.entries(data); + if (filter) { + /** + * Match any substring (partial) from a string (text). + * @param {string} text + * @param {string} partial + */ var matches = function matches(text, partial) { return text.toLowerCase().indexOf(partial.toLowerCase()) > -1; }; - var parsedAsArray = Object.entries(parsedData); - var searchResults = parsedAsArray.filter(function (element) { - return matches("".concat(element[1].title, ", ").concat(element[1].tags), search); - }); - searchResults.forEach(function (result) { - var card = new Card(result[1], +result[0]); - card.render(outputContainer); + data = data.filter(function (element) { + return matches("".concat(element[1].title, ", ").concat(element[1].tags), search.value); }); - sortTrigger.title = "\"".concat(search, "\""); - return; } - switch (localStorage['sort']) { - // sort from the oldest theme added + switch (localStorage.sort) { + /* + * Sort from the most recent theme added. + */ case 'latest': - if (change) return repeatToggle('random'); - parsedData.reverse(); + data.reverse(); + break; + + /* + * Ascending sorting of stars from repositories. + */ + case 'updated': + // item1.attr.localeCompare(item2.attr); + data.sort(function (a, b) { + return b[1].pushed_at.localeCompare(a[1].pushed_at); + }); + break; + + /* + * Ascending sorting of stars from repositories. + */ + case 'stars': + data.sort(function (a, b) { + return b[1].stargazers_count - a[1].stargazers_count; + }); break; - // sort randomly + /* + * Randomly sorting of themes. + */ case 'random': - if (change) return repeatToggle('oldest'); - for (var i = parsedData.length - 1; i > 0; i--) { + for (var i = data.length - 1; i > 0; i--) { var j = Math.floor(Math.random() * (i + 1)); - var _ref = [parsedData[j], parsedData[i]]; - parsedData[i] = _ref[0]; - parsedData[j] = _ref[1]; + var _ref = [data[j], data[i]]; + data[i] = _ref[0]; + data[j] = _ref[1]; } break; - // sort from the most recent theme added + /* + * Sort from the least recent theme added (oldest). + * Since it's sorted like this by default from the file, do nothing. + */ default: - if (change) return repeatToggle('latest'); } - - // TODO: make a better way to preview the current sorting - sortTrigger.title = localStorage['sort']; - parsedData.forEach(function (entry, index) { - var card = new Card(entry, index); - card.render(outputContainer); - }); + var _iterator = _createForOfIteratorHelper(data), + _step; + try { + for (_iterator.s(); !(_step = _iterator.n()).done;) { + var _step$value = _slicedToArray(_step.value, 2), + index = _step$value[0], + entry = _step$value[1]; + var card = new Card(entry, index); + card.render(outputContainer); + } + } catch (err) { + _iterator.e(err); + } finally { + _iterator.f(); + } }); } // add themes var outputContainer = document.getElementById('themes_container'); - if (outputContainer) toggleSortType(false); /* Theme Handling * ============== diff --git a/docs/assets/js/main.min.js b/docs/assets/js/main.min.js index 63c285c..bf5a98a 100644 --- a/docs/assets/js/main.min.js +++ b/docs/assets/js/main.min.js @@ -1 +1 @@ -"use strict";function _typeof(e){return(_typeof="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function _classCallCheck(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function _defineProperties(e,t){for(var n=0;n\n
\n

').concat(this._title,'

\n \n \n \n
\n \n
\n \n Download\n
\n \n ');e.insertAdjacentHTML("beforeend",t)}}])}(),removeLightbox=function(){return document.body.getElementsById("lightbox").remove()};function createLightbox(e){var t=document.getElementById("theme-".concat(e)),n=t.querySelector("h3"),o=t.querySelector("img"),r='\n \n ');t.insertAdjacentHTML("afterend",r)}!function(){document.getElementById("searchInput").addEventListener("keydown",function(e){"Enter"===e.key&&n(!1)}),document.getElementById("searchButton").addEventListener("click",function(){return n(!1)});var e=document.getElementById("js-sortSwitcher");function t(e){return localStorage.sort=e,n(!1)}function n(n){document.querySelectorAll(".card")&&document.querySelectorAll(".card").forEach(function(e){return e.remove()}),fetch("themes.json").then(function(e){return e.json()}).then(function(r){var i=document.getElementById("searchInput").value;if(i){return Object.entries(r).filter(function(e){return t="".concat(e[1].title,", ").concat(e[1].tags),n=i,t.toLowerCase().indexOf(n.toLowerCase())>-1;var t,n}).forEach(function(e){new Card(e[1],+e[0]).render(o)}),void(e.title='"'.concat(i,'"'))}switch(localStorage.sort){case"latest":if(n)return t("random");r.reverse();break;case"random":if(n)return t("oldest");for(var a=r.length-1;a>0;a--){var c=Math.floor(Math.random()*(a+1)),s=[r[c],r[a]];r[a]=s[0],r[c]=s[1]}break;default:if(n)return t("latest")}e.title=localStorage.sort,r.forEach(function(e,t){new Card(e,t).render(o)})})}e.addEventListener("click",function(){return n(!0)}),localStorage.sort||(localStorage.sort="latest");var o=document.getElementById("themes_container");o&&n(!1);var r=window.matchMedia("(prefers-color-scheme: dark)").matches?"night":"day",i=document.getElementById("js-themeSwitcher"),a=i.querySelector("i");localStorage.theme||(localStorage.theme="day"===r?"day":"night"),"night"===localStorage.theme?(a.classList.toggle("fa-sun"),a.classList.toggle("fa-moon"),document.documentElement.classList.add("nightmode")):document.documentElement.classList.add("daymode"),i.addEventListener("click",function(){return document.documentElement.classList.toggle("nightmode"),document.documentElement.classList.toggle("daymode"),a.classList.toggle("fa-sun"),a.classList.toggle("fa-moon"),void("night"===localStorage.theme?localStorage.theme="day":localStorage.theme="night")})}(); \ No newline at end of file +"use strict";function _slicedToArray(t,e){return _arrayWithHoles(t)||_iterableToArrayLimit(t,e)||_unsupportedIterableToArray(t,e)||_nonIterableRest()}function _nonIterableRest(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function _iterableToArrayLimit(t,e){var r=null==t?null:"undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(null!=r){var n,o,a,i,c=[],l=!0,s=!1;try{if(a=(r=r.call(t)).next,0===e){if(Object(r)!==r)return;l=!1}else for(;!(l=(n=a.call(r)).done)&&(c.push(n.value),c.length!==e);l=!0);}catch(t){s=!0,o=t}finally{try{if(!l&&null!=r.return&&(i=r.return(),Object(i)!==i))return}finally{if(s)throw o}}return c}}function _arrayWithHoles(t){if(Array.isArray(t))return t}function _createForOfIteratorHelper(t,e){var r="undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(!r){if(Array.isArray(t)||(r=_unsupportedIterableToArray(t))||e&&t&&"number"==typeof t.length){r&&(t=r);var n=0,o=function(){};return{s:o,n:function(){return n>=t.length?{done:!0}:{done:!1,value:t[n++]}},e:function(t){throw t},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a,i=!0,c=!1;return{s:function(){r=r.call(t)},n:function(){var t=r.next();return i=t.done,t},e:function(t){c=!0,a=t},f:function(){try{i||null==r.return||r.return()}finally{if(c)throw a}}}}function _unsupportedIterableToArray(t,e){if(t){if("string"==typeof t)return _arrayLikeToArray(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?_arrayLikeToArray(t,e):void 0}}function _arrayLikeToArray(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r\n
\n

').concat(this._title,'

\n \n \n \n
\n \n
\n \n Download\n
\n \n ');t.insertAdjacentHTML("beforeend",e)}}])}(),removeLightbox=function(){return document.body.getElementsById("lightbox").remove()};function createLightbox(t){var e=document.getElementById("theme-".concat(t)),r=e.querySelector("h3"),n=e.querySelector("img"),o='\n \n ');e.insertAdjacentHTML("afterend",o)}!function(){var t=document.getElementById("searchInput");t.addEventListener("keydown",function(e){"Enter"===e.key&&r(t.value)}),document.getElementById("searchButton").addEventListener("click",function(){return!1}),localStorage.sort||(localStorage.sort="latest");var e=document.getElementById("js-sortSwitcher");function r(r){e.title='"'.concat(localStorage.sort,'"');var o=document.getElementById("themes_container");o&&(o.innerHTML=""),fetch("themes.json").then(function(t){return t.json()}).then(function(e){if(e=Object.entries(e),r){e=e.filter(function(e){return r="".concat(e[1].title,", ").concat(e[1].tags),n=t.value,r.toLowerCase().indexOf(n.toLowerCase())>-1;var r,n})}switch(localStorage.sort){case"latest":e.reverse();break;case"updated":e.sort(function(t,e){return e[1].pushed_at.localeCompare(t[1].pushed_at)});break;case"stars":e.sort(function(t,e){return e[1].stargazers_count-t[1].stargazers_count});break;case"random":for(var o=e.length-1;o>0;o--){var a=Math.floor(Math.random()*(o+1)),i=[e[a],e[o]];e[o]=i[0],e[a]=i[1]}}var c,l=_createForOfIteratorHelper(e);try{for(l.s();!(c=l.n()).done;){var s=_slicedToArray(c.value,2),u=s[0],d=s[1];new Card(d,u).render(n)}}catch(t){l.e(t)}finally{l.f()}})}e.addEventListener("click",function(){return function(){switch(localStorage.sort){case"latest":localStorage.sort="updated";break;case"updated":localStorage.sort="stars";break;case"stars":localStorage.sort="random";break;case"random":localStorage.sort="oldest";break;default:localStorage.sort="latest"}return r()}()}),r();var n=document.getElementById("themes_container"),o=window.matchMedia("(prefers-color-scheme: dark)").matches?"night":"day",a=document.getElementById("js-themeSwitcher"),i=a.querySelector("i");localStorage.theme||(localStorage.theme="day"===o?"day":"night"),"night"===localStorage.theme?(i.classList.toggle("fa-sun"),i.classList.toggle("fa-moon"),document.documentElement.classList.add("nightmode")):document.documentElement.classList.add("daymode"),a.addEventListener("click",function(){return document.documentElement.classList.toggle("nightmode"),document.documentElement.classList.toggle("daymode"),i.classList.toggle("fa-sun"),i.classList.toggle("fa-moon"),void("night"===localStorage.theme?localStorage.theme="day":localStorage.theme="night")})}(); \ No newline at end of file diff --git a/docs/themes.json b/docs/themes.json index c5effb8..f2db4d5 100644 --- a/docs/themes.json +++ b/docs/themes.json @@ -4,874 +4,2101 @@ "link": "https://github.com/birbkeks/Firefox-Titlebar-Button-Fix", "description": "This theme fixes titlebar min max close buttons for Firefox in linux. ", "image": "assets/img/themes/titlebarfix.webp", - "tags": [ "birbkeks", "fix", "titlebar"] - }, - { - "title": "u/FffDtark's Theme", - "link": "https://github.com/Ikrom27/Firefox", - "description": "Oneline theme", - "image": "assets/img/themes/My_Firefox_theme_-_uFffDtark.webp", - "tags": [ "dark", "Ikrom27", "centre", "one-line" ] + "tags": [ + "birbkeks", + "fix", + "titlebar" + ], + "repository": "https://github.com/birbkeks/Firefox-Titlebar-Button-Fix", + "pushed_at": "2024-05-12T18:57:05Z", + "stargazers_count": 5, + "avatar": "https://avatars.githubusercontent.com/u/67545942?v=4" }, { "title": "Sweet_Pop!", "link": "https://github.com/PROxZIMA/Sweet-Pop", "description": "Sweet_Pop! Minimalist oneliner theme for Firefox perfectly matching Sweet Dark.", "image": "assets/img/themes/sweetpop.webp", - "tags": [ "dark", "light", "modern", "blue", "auto-hide", "floating bar", "PROxZIMA" ] - }, - { - "title": "FirefoxCSS-Plus", - "link": "https://github.com/c2oc/FirefoxCSS-Plus", - "description": "FirefoxCSS+ is based on h4wwk3ye release (https://github.com/h4wwk3ye/firefoxCSS), MaterialFox (https://github.com/muckSponge/MaterialFox) and FlyingFox (https://github.com/akshat46/FlyingFox).", - "image": "assets/img/themes/firefoxcssplus.webp", - "tags": [ "dark", "archived", "c2oc" ] + "tags": [ + "dark", + "light", + "modern", + "blue", + "auto-hide", + "floating bar", + "PROxZIMA" + ], + "repository": "https://github.com/PROxZIMA/Sweet-Pop", + "pushed_at": "2023-03-25T10:54:34Z", + "stargazers_count": 253, + "avatar": "https://avatars.githubusercontent.com/u/43103163?v=4" }, { "title": "minimalFOX", "link": "https://github.com/marmmaz/FirefoxCSS", "description": "A compact & minimal Firefox theme built for macOS.", "image": "assets/img/themes/minimalfox.webp", - "tags": [ "dark", "macos", "marmazz", "auto-hide", "floating bar", "compact" ] + "tags": [ + "dark", + "macos", + "marmazz", + "auto-hide", + "floating bar", + "compact" + ], + "repository": "https://github.com/marmmaz/FirefoxCSS", + "pushed_at": "2021-10-13T19:11:07Z", + "stargazers_count": 73, + "avatar": "https://avatars.githubusercontent.com/u/71498246?v=4" }, { "title": "FirefoxCss", "link": "https://github.com/h4wwk3ye/firefoxCSS", "description": "Custom userChrome.css for firefox based on Material Fox and Flying Fox with few small changes.", "image": "assets/img/themes/firefoxcss.webp", - "tags": [ "light", "h4wwk3ye", "Tree Style Tab", "sidebar" ] + "tags": [ + "light", + "h4wwk3ye", + "Tree Style Tab", + "sidebar" + ], + "repository": "https://github.com/h4wwk3ye/firefoxCSS", + "pushed_at": "2021-01-25T11:22:25Z", + "stargazers_count": 23, + "avatar": "https://avatars.githubusercontent.com/u/24487030?v=4" }, { "title": "Simplify Silver Peach for Firefox", "link": "https://github.com/CristianDragos/FirefoxThemes/tree/master/Simplify%20Silver%20Peach", "description": "A minimal Firefox Theme for those who would like to properly enjoy my Simplify 10 Silver Peach - Windows 10 Themes\n Compatibility: V89+", "image": "assets/img/themes/simplify_silver_peach_for_firefox_preview.webp", - "tags": [ "light", "pastel", "CristianDragos", "rounded" ] + "tags": [ + "light", + "pastel", + "CristianDragos", + "rounded" + ], + "repository": "https://github.com/CristianDragos/FirefoxThemes", + "pushed_at": "2021-10-07T12:23:11Z", + "stargazers_count": 138, + "avatar": "https://avatars.githubusercontent.com/u/3705687?v=4" }, { "title": "Simplify Darkish for Firefox", "link": "https://github.com/CristianDragos/FirefoxThemes/tree/master/Simplify%20Darkish", "description": "A minimal Firefox Theme for those who would like to properly enjoy my Simplify 10 Darkish - Windows 10 Themes\n Compatibility: V89+", "image": "assets/img/themes/simplify_darkish_for_firefox_preview.webp", - "tags": [ "dark", "CristianDragos", "windows 10" ] + "tags": [ + "dark", + "CristianDragos", + "windows 10" + ], + "repository": "https://github.com/CristianDragos/FirefoxThemes", + "pushed_at": "2021-10-07T12:23:11Z", + "stargazers_count": 138, + "avatar": "https://avatars.githubusercontent.com/u/3705687?v=4" }, { "title": "SimpleFox", "link": "https://github.com/migueravila/Simplefox", "description": "🦊 A Userstyle theme for Firefox minimalist and Keyboard centered.", "image": "assets/img/themes/simplefox.webp", - "tags": [ "migueravila", "dark", "minimal", "keyboard", "compact", "linux"] + "tags": [ + "migueravila", + "dark", + "minimal", + "keyboard", + "compact", + "linux" + ], + "repository": "https://github.com/migueravila/Simplefox", + "pushed_at": "2022-04-24T18:56:19Z", + "stargazers_count": 1757, + "avatar": "https://avatars.githubusercontent.com/u/35583825?v=4" }, { "title": "blurredfox", "link": "https://github.com/manilarome/blurredfox", "description": "A modern Firefox CSS Theme", "image": "assets/img/themes/blurred.webp", - "tags": [ "manilarome", "dark", "light", "blur", "linux" ] + "tags": [ + "manilarome", + "dark", + "light", + "blur", + "linux" + ], + "repository": "https://github.com/manilarome/blurredfox", + "pushed_at": "2023-06-27T10:12:27Z", + "stargazers_count": 914, + "avatar": "https://avatars.githubusercontent.com/u/40349590?v=4" }, { "title": "Firefox Review", "link": "https://github.com/fellowish/firefox-review", "description": "Firefox Review is a CSS redesign of the browser, changing the look of Firefox to match the color scheme and design language of Firefox Preview, the previous name of Mozilla's new mobile app.", "image": "assets/img/themes/firefoxreview.webp", - "tags": [ "dark", "light", "fellowish", "archived", "colorscheme" ] + "tags": [ + "dark", + "light", + "fellowish", + "archived", + "colorscheme" + ], + "repository": "https://github.com/fellowish/firefox-review", + "pushed_at": "2021-04-22T18:14:52Z", + "stargazers_count": 142, + "avatar": "https://avatars.githubusercontent.com/u/28973978?v=4" }, { "title": "nord-firefox", "link": "https://github.com/daaniiieel/nord-firefox", "description": "Firefox userChrome.css theme, based on https://github.com/AnubisZ9/Global-Dark-Nordic-theme/.", "image": "assets/img/themes/nord.webp", - "tags": [ "nord", "daaniiieel", "colorscheme" ] + "tags": [ + "nord", + "daaniiieel", + "colorscheme" + ], + "repository": "https://github.com/daaniiieel/nord-firefox", + "pushed_at": "2020-04-18T08:08:07Z", + "stargazers_count": 28, + "avatar": "https://avatars.githubusercontent.com/u/41679054?v=4" }, { "title": "not-holar's theme", "link": "https://github.com/not-holar/my_firefox_theme", "description": "Welcome to the repo for my Firefox theme, a theme that aims to look nice and clean while not compromising functionality.\n Compatibility: V89+", "image": "assets/img/themes/MyFirefoxThemenotholar.webp", - "tags": [ "not-holar", "stylus", "Tree Style", "dark" ] + "tags": [ + "not-holar", + "stylus", + "Tree Style", + "dark" + ], + "repository": "https://github.com/not-holar/my_firefox_theme", + "pushed_at": "2022-10-17T13:05:29Z", + "stargazers_count": 83, + "avatar": "https://avatars.githubusercontent.com/u/58831297?v=4" }, { "title": "Firefox-Mod-Blur", "link": "https://github.com/datguypiko/Firefox-Mod-Blur", "description": "Tested 84.0.1 Windows 10 / Default Dark Theme ", "image": "assets/img/themes/firefoxmodblur.webp", - "tags": [ "blur", "datguypiko", "dark", "centre", "rounded" ] + "tags": [ + "blur", + "datguypiko", + "dark", + "centre", + "rounded" + ], + "repository": "https://github.com/datguypiko/Firefox-Mod-Blur", + "pushed_at": "2024-10-06T14:08:25Z", + "stargazers_count": 1279, + "avatar": "https://avatars.githubusercontent.com/u/61329159?v=4" }, { "title": "quietfox", "link": "https://github.com/coekuss/quietfox", "description": "This userChrome mod was created to make the Firefox UI cleaner and more modern without sacrificing any of its original features. You can still use themes, and you can still use Compact Mode and Touch Mode. You can pretty much forget that you have a mod installed, it works quietly in the background.", "image": "assets/img/themes/quietfox.webp", - "tags": [ "coekuss", "toolkit", "simple" ] + "tags": [ + "coekuss", + "toolkit", + "simple" + ], + "repository": "https://github.com/coekuss/quietfox", + "pushed_at": "2021-07-05T22:51:14Z", + "stargazers_count": 173, + "avatar": "https://avatars.githubusercontent.com/u/45906331?v=4" }, { "title": "minimal-functional-fox", "link": "https://github.com/mut-ex/minimal-functional-fox", "description": "A minimal, yet functional configuration for Firefox!", "image": "assets/img/themes/minimalfuntionalfox.webp", - "tags": [ "centre", "minimal", "dark", "animations" ] + "tags": [ + "centre", + "minimal", + "dark", + "animations" + ], + "repository": "https://github.com/mut-ex/minimal-functional-fox", + "pushed_at": "2023-05-19T00:16:56Z", + "stargazers_count": 723, + "avatar": "https://avatars.githubusercontent.com/u/21265981?v=4" }, { "title": "MaterialFox", "link": "https://github.com/muckSponge/MaterialFox", "description": "A Material Design-inspired userChrome.css theme for Firefox", "image": "assets/img/themes/materialfox.webp", - "tags": [ "muckSponge", "dark", "light", "colorscheme" ] + "tags": [ + "muckSponge", + "dark", + "light", + "colorscheme" + ], + "repository": "https://github.com/muckSponge/MaterialFox", + "pushed_at": "2024-09-23T08:58:42Z", + "stargazers_count": 1921, + "avatar": "https://avatars.githubusercontent.com/u/5405629?v=4" }, { "title": "Firefox UWP Style", "link": "https://github.com/Guerra24/Firefox-UWP-Style", "description": "A theme that follows UWP styling. Featuring the original MDL2 design and Sun Valley refresh", "image": "assets/img/themes/firefoxuwpstyle.webp", - "tags": [ "Guerra24", "dark", "colorscheme" ] + "tags": [ + "Guerra24", + "dark", + "colorscheme" + ], + "repository": "https://github.com/Guerra24/Firefox-UWP-Style", + "pushed_at": "2024-10-04T03:26:00Z", + "stargazers_count": 399, + "avatar": "https://avatars.githubusercontent.com/u/9023392?v=4" }, { "title": "Almost Dark Proton", "link": "https://github.com/Neikon/Almost-Dark-Grey-Colorfull-Proton---FirefoxCSS-Themes", "description": "Based on Simplify Darkish with few small changes based too in Mod Blur theme. It is intended to be used together with the new firefox elements with the new design called Proton, as the new tab page design. \n Compatibility: V89+", "image": "assets/img/themes/almostdarkproton.webp", - "tags": [ "centre", "dark", "Neikon", "icon tab bar" ] + "tags": [ + "centre", + "dark", + "Neikon", + "icon tab bar" + ], + "repository": "https://github.com/Neikon/Almost-Dark-Grey-Colorfull-Proton---FirefoxCSS-Themes", + "pushed_at": "2022-04-05T07:18:45Z", + "stargazers_count": 54, + "avatar": "https://avatars.githubusercontent.com/u/1765319?v=4" }, { "title": "Monochrome Tree", "link": "https://github.com/MatejKafka/FirefoxTheme", "description": "A custom minimalist theme for Firefox with Tree Style Tab support", "image": "assets/img/themes/19.webp", - "tags": [ "dark", "light", "MatejKafka", "monochrome", "Tree Style", "one-line" ] + "tags": [ + "dark", + "light", + "MatejKafka", + "monochrome", + "Tree Style", + "one-line" + ], + "repository": "https://github.com/MatejKafka/FirefoxTheme", + "pushed_at": "2022-04-26T10:05:10Z", + "stargazers_count": 15, + "avatar": "https://avatars.githubusercontent.com/u/6414091?v=4" }, { "title": "Flying Fox", "link": "https://github.com/akshat46/FlyingFox", "description": "An opinionated set of configurations for firefox with Material Fox, github-moonlight userstyle", "image": "assets/img/themes/flying.webp", - "tags": [ "material", "moonlight", "akshat46" ] + "tags": [ + "material", + "moonlight", + "akshat46" + ], + "repository": "https://github.com/akshat46/FlyingFox", + "pushed_at": "2023-04-11T07:11:04Z", + "stargazers_count": 1594, + "avatar": "https://avatars.githubusercontent.com/u/7402043?v=4" }, { "title": "FirefoxW10ContextMenus", "link": "https://github.com/M1ch431/FirefoxW10ContextMenus", "description": "Emulates the Windows 10 context menus in Firefox.", "image": "assets/img/themes/20.webp", - "tags": [ "toolkit", "context", "menu", "windows" ] + "tags": [ + "toolkit", + "context", + "menu", + "windows" + ], + "repository": "https://github.com/M1ch431/FirefoxW10ContextMenus", + "pushed_at": "2021-09-20T04:21:08Z", + "stargazers_count": 108, + "avatar": "https://avatars.githubusercontent.com/u/46256998?v=4" }, { "title": "EdgeFox", "link": "https://github.com/23Bluemaster23/EdgeFox", "description": "Is a userchrome that imitates (or attempts to imitate) the style of Microsoft's Edge Chromiun browser.", "image": "assets/img/themes/edgefox.webp", - "tags": [ "windows", "edge" ] + "tags": [ + "windows", + "edge" + ], + "repository": "https://github.com/23Bluemaster23/EdgeFox", + "pushed_at": "2021-09-26T14:59:13Z", + "stargazers_count": 32, + "avatar": "https://avatars.githubusercontent.com/u/49736771?v=4" }, { "title": "Firefox i3wm theme", "link": "https://github.com/aadilayub/firefox-i3wm-theme", "description": "A theme for Firefox meant to emulate qutebrowser and integrate with the i3 window manager.", "image": "assets/img/themes/ff-i3wm.webp", - "tags": [ "qt", "qute", "qutebrowser", "i3" ] + "tags": [ + "qt", + "qute", + "qutebrowser", + "i3" + ], + "repository": "https://github.com/aadilayub/firefox-i3wm-theme", + "pushed_at": "2023-07-27T09:02:57Z", + "stargazers_count": 142, + "avatar": "https://avatars.githubusercontent.com/u/31581044?v=4" }, { "title": "Edge-Frfox", "link": "https://github.com/bmFtZQ/Edge-FrFox", "description": "A Firefox userChrome.css theme that aims to recreate the look and feel of Microsoft Edge.", "image": "assets/img/themes/Edge-Frfox.webp", - "tags": [ "light", "dark", "fluent", "microsoft", "bmFtZQ", "windows", "mac", "linux" ] + "tags": [ + "light", + "dark", + "fluent", + "microsoft", + "bmFtZQ", + "windows", + "mac", + "linux" + ], + "repository": "https://github.com/bmFtZQ/Edge-FrFox", + "pushed_at": "2024-09-24T14:06:57Z", + "stargazers_count": 666, + "avatar": "https://avatars.githubusercontent.com/u/62812711?v=4" }, { "title": "NicoFox", "link": "https://github.com/SlowNicoFish/NicoFox", "description": "A simple rounded theme", "image": "assets/img/themes/22381112138598-fe8cd400-8bd1-11eb-8eed-edcca2c689d8.webp", - "tags": [ "rounded", "minimal" ] + "tags": [ + "rounded", + "minimal" + ], + "repository": "https://github.com/SlowNicoFish/NicoFox", + "pushed_at": "2021-03-23T00:04:37Z", + "stargazers_count": 7, + "avatar": "https://avatars.githubusercontent.com/u/19305293?v=4" }, { "title": "Elegant Nord Theme", "link": "https://github.com/rafamadriz/Firefox-Elegant-NordTheme", "description": "Elegant Nord Theme with material design", "image": "assets/img/themes/Elegant-Nord-Theme.webp", - "tags": [ "nord", "material" ] + "tags": [ + "nord", + "material" + ], + "repository": "https://github.com/rafamadriz/Firefox-Elegant-NordTheme", + "pushed_at": "2023-04-28T01:47:55Z", + "stargazers_count": 23, + "avatar": "https://avatars.githubusercontent.com/u/67771985?v=4" }, { "title": "Moonlight 🌌", "link": "https://github.com/eduardhojbota/moonlight-userChrome", "description": "A dark userstyle for Firefox inspired by moonlight-vscode-theme and github-moonlight", "image": "assets/img/themes/moonlight.webp", - "tags": [ "dark" ] + "tags": [ + "dark" + ], + "repository": "https://github.com/eduardhojbota/moonlight-userChrome", + "pushed_at": "2023-11-25T14:46:00Z", + "stargazers_count": 139, + "avatar": "https://avatars.githubusercontent.com/u/2820538?v=4" }, { "title": "Firefox Halo", "link": "https://github.com/seirin-blu/Firefox-Halo", "description": "A mininmalist Firefox theme with a lot of about: pages edited to act as resources. Updates about every month.", "image": "assets/img/themes/firefoxhalo.webp", - "tags": [ "toolkit" ] + "tags": [ + "toolkit" + ], + "repository": "https://github.com/seirin-blu/Firefox-Halo", + "pushed_at": "2023-11-27T19:29:22Z", + "stargazers_count": 42, + "avatar": "https://avatars.githubusercontent.com/u/61664123?v=4" }, { "title": "Pseudo-fullscreen Firefox, Sidebery and YouTube", "link": "https://github.com/ongots/pseudo-fullscreen-firefox", "description": "\n Compatibility: V89+", "image": "assets/img/themes/always-fullscreen-firefox.webp", - "tags": [ "toolkit", "sidebar" ] + "tags": [ + "toolkit", + "sidebar" + ], + "repository": "https://github.com/ongots/pseudo-fullscreen-firefox", + "pushed_at": "2024-10-07T10:15:49Z", + "stargazers_count": 55, + "avatar": "https://avatars.githubusercontent.com/u/43604031?v=4" }, { "title": "WhiteSur Safari style for Firefox", "link": "https://github.com/adamxweb/WhiteSurFirefoxThemeMacOS", "description": "Make your Firefox look like Safari. MacOS Big Sur inspired theme for Firefox on MacOS & Windows.\n Compatibility: V89+", "image": "assets/img/themes/whitesur.webp", - "tags": [ "apple", "mac", "safari" ] + "tags": [ + "apple", + "mac", + "safari" + ], + "repository": "https://github.com/adamxweb/WhiteSurFirefoxThemeMacOS", + "pushed_at": "2024-07-11T08:01:46Z", + "stargazers_count": 480, + "avatar": "https://avatars.githubusercontent.com/u/6800453?v=4" }, { "title": "Alpen Blue to Firefox CSS", "link": "https://github.com/Godiesc/AlpenBlue", "description": "Theme to Blue and Alpenglow lovers\n Compatibility: V89+", "image": "assets/img/themes/alpenblue.webp", - "tags": [ "aplenblue", "alpenglow", "Godiesc" ] + "tags": [ + "aplenblue", + "alpenglow", + "Godiesc" + ], + "repository": "https://github.com/Godiesc/AlpenBlue", + "pushed_at": "2022-06-19T19:00:45Z", + "stargazers_count": 64, + "avatar": "https://avatars.githubusercontent.com/u/22057609?v=4" }, { "title": "duskFox", "link": "https://github.com/aminomancer/uc.css.js", "description": "A dark indigo theme integrated with extensive functional and visual scripts.\n Compatibility: V89+", "image": "assets/img/themes/duskfox.webp", - "tags": [ "dark", "dusk" ] + "tags": [ + "dark", + "dusk" + ], + "repository": "https://github.com/aminomancer/uc.css.js", + "pushed_at": "2024-09-30T03:51:21Z", + "stargazers_count": 332, + "avatar": "https://avatars.githubusercontent.com/u/33384265?v=4" }, { "title": "Compact Mode to Firefox Css", "link": "https://github.com/Godiesc/compactmodefirefoxcss", "description": "Theme to Make Firefox Compact and keep it's Beauty\n Compatibility: V89+", "image": "assets/img/themes/splashcompact.webp", - "tags": [ "toolkit", "Godiesc" ] + "tags": [ + "toolkit", + "Godiesc" + ], + "repository": "https://github.com/Godiesc/compactmodefirefoxcss", + "pushed_at": "2021-08-27T17:47:51Z", + "stargazers_count": 16, + "avatar": "https://avatars.githubusercontent.com/u/22057609?v=4" }, { "title": "DiamondFucsia Theme to Firefox Css", "link": "https://github.com/Godiesc/DiamondFucsia", "description": "Dark Theme to Firefox with Fuchsia Colors\n Compatibility: V89+", "image": "assets/img/themes/diamondfucsia.webp", - "tags": [ "Godiesc" ] + "tags": [ + "Godiesc" + ], + "repository": "https://github.com/Godiesc/DiamondFucsia", + "pushed_at": "2023-11-25T12:46:57Z", + "stargazers_count": 7, + "avatar": "https://avatars.githubusercontent.com/u/22057609?v=4" }, { "title": "Australis like tabs in Proton UI", "link": "https://github.com/sagars007/Australis-like-tabs-FF-ProtonUI-changes", "description": "Changes to make the new proton UI redesign in Firefox better; including changes to tabs, more compact-compact mode, proton gradient accents in elements and much more\n Compatibility: V89+", "image": "assets/img/themes/custom_australistabs_protonUI.webp", - "tags": [ "compact" ] + "tags": [ + "compact" + ], + "repository": "https://github.com/sagars007/Australis-like-tabs-FF-ProtonUI-changes", + "pushed_at": "2021-06-10T07:37:39Z", + "stargazers_count": 10, + "avatar": "https://avatars.githubusercontent.com/u/56472130?v=4" }, { "title": "Firefox vertical tabs (TST) UI", "link": "https://github.com/sagars007/Firefox-vertical-tabs-customUI", "description": "Vertical tabs in Firefox using tree style tabs. Vibrant tab selectors, full dark mode, titlebar text in nav-bar and much more.\n Compatibility: V89+", "image": "assets/img/themes/compact_verticaltabs_view.webp", - "tags": [ "sidebar", "sidetab", "tree" ] + "tags": [ + "sidebar", + "sidetab", + "tree" + ], + "repository": "https://github.com/sagars007/Firefox-vertical-tabs-customUI", + "pushed_at": "2021-09-04T19:49:09Z", + "stargazers_count": 29, + "avatar": "https://avatars.githubusercontent.com/u/56472130?v=4" }, { "title": "Lepton(Proton Fix) in Proton UI", "link": "https://github.com/black7375/Firefox-UI-Fix", "description": "🦊 I respect proton UI and aim to fix it. Icons, Padding, Tab Design...\n Compatibility: V89+", "image": "assets/img/themes/Lepton.webp", - "tags": [ "" ] + "tags": [ + "" + ], + "repository": "https://github.com/black7375/Firefox-UI-Fix", + "pushed_at": "2024-09-23T12:00:17Z", + "stargazers_count": 5361, + "avatar": "https://avatars.githubusercontent.com/u/25581533?v=4" }, { "title": "Lepton's Photon-Styled in Proton UI", "link": "https://github.com/black7375/Firefox-UI-Fix/tree/photon-style", "description": "🦊 I tried to preserve Proton’s feeling while preserving Photon’s strengths. Icons, Padding, Tab Design...\n Compatibility: V89+", "image": "assets/img/themes/Lepton-PhotonStyle.webp", - "tags": [ "" ] + "tags": [ + "" + ], + "repository": "https://github.com/black7375/Firefox-UI-Fix/tree/photon-style", + "pushed_at": "2024-09-23T12:00:17Z", + "stargazers_count": 5361, + "avatar": "https://avatars.githubusercontent.com/u/25581533?v=4" }, { "title": "[Firefox 90+] RainFox", "link": "https://github.com/1280px/rainfox", "description": "Restores Photon's look and feel but keeps Proton's clarity with some improvements and new features. \n Compatibility: V89+", "image": "assets/img/themes/rainfox.webp", - "tags": [ "" ] + "tags": [ + "" + ], + "repository": "https://github.com/1280px/rainfox", + "pushed_at": "2022-02-04T15:28:44Z", + "stargazers_count": 67, + "avatar": "https://avatars.githubusercontent.com/u/71165491?v=4" }, { "title": "Gradient rounded tabs redesign and ultra compact mode [Proton UI]", "link": "https://github.com/sagars007/Proton-UI-connected-rounded-tabs-firefox-css", "description": "Firefox Proton UI minimal changes with nav-bar-connected rounded tabs, reduced compact mode, nightly color gradient accents etc.. \n Compatibility: V89+", "image": "assets/img/themes/proton-ui-gradient-rounded-tabs-display.webp", - "tags": [ "" ] + "tags": [ + "" + ], + "repository": "https://github.com/sagars007/Proton-UI-connected-rounded-tabs-firefox-css", + "pushed_at": "2023-05-14T06:24:23Z", + "stargazers_count": 32, + "avatar": "https://avatars.githubusercontent.com/u/56472130?v=4" }, { "title": "Technetium", "link": "https://github.com/edo0/Technetium", "description": "A focused approach to taming the new Firefox Proton interface, restituting some of the beloved elements retired alongside the old Photon UI - menu icons and much more \n Compatibility: V89+", "image": "assets/img/themes/Technetium.webp", - "tags": [ "edo0", "light", "dark", "rounded", "squared", "compact", "v89" ] + "tags": [ + "edo0", + "light", + "dark", + "rounded", + "squared", + "compact", + "v89" + ], + "repository": "https://github.com/edo0/Technetium", + "pushed_at": "2022-02-13T15:22:08Z", + "stargazers_count": 89, + "avatar": "https://avatars.githubusercontent.com/u/16632292?v=4" }, { "title": "Chameleons-Beauty to Firefox CSS", "link": "https://github.com/Godiesc/Chameleons-Beauty", "description": "Adaptive Theme to Firefox Themes \n Compatibility: V89+", "image": "assets/img/themes/Chameleons-Beauty.webp", - "tags": [ "dark", "Godiesc", "colourful", "dark", "light", "v89" ] + "tags": [ + "dark", + "Godiesc", + "colourful", + "dark", + "light", + "v89" + ], + "repository": "https://github.com/Godiesc/Chameleons-Beauty", + "pushed_at": "2024-10-01T22:51:24Z", + "stargazers_count": 104, + "avatar": "https://avatars.githubusercontent.com/u/22057609?v=4" }, { "title": "pro-fox: enhanced firefox proton", "link": "https://github.com/xmansyx/Pro-Fox", "description": "a proton based theme to make it even better \n Compatibility: V89+", "image": "assets/img/themes/pro-fox.webp", - "tags": [ "xmansyx", "centered", "rounded", "dark", "light", "bigger", "v89" ] + "tags": [ + "xmansyx", + "centered", + "rounded", + "dark", + "light", + "bigger", + "v89" + ], + "repository": "https://github.com/xmansyx/Pro-Fox", + "pushed_at": "2021-06-16T17:19:03Z", + "stargazers_count": 27, + "avatar": "https://avatars.githubusercontent.com/u/23141127?v=4" }, { "title": "MartinFox", "link": "https://github.com/arp242/MartinFox", "description": "Really simple userChrome.css to make the active tab stand out more; 61 lines. \n Compatibility: V89+", "image": "assets/img/themes/martinfox.webp", - "tags": [ "arp242", "pure", "compact", "v91" ] + "tags": [ + "arp242", + "pure", + "compact", + "v91" + ], + "repository": "https://github.com/arp242/MartinFox", + "pushed_at": "2023-01-15T13:01:04Z", + "stargazers_count": 12, + "avatar": "https://avatars.githubusercontent.com/u/1032692?v=4" }, { "title": "ProtoVibrant", "link": "https://github.com/bpwned/protovibrant", "description": "Add macOS vibrancy to the Proton titlebar. Supports dark and light mode. \n Compatibility: V89+", "image": "assets/img/themes/protovibrant.webp", - "tags": [ "vibrancy", "macos", "pure", "transparency", "bpwned", "v89" ] + "tags": [ + "vibrancy", + "macos", + "pure", + "transparency", + "bpwned", + "v89" + ], + "repository": "https://github.com/bpwned/protovibrant", + "pushed_at": "2021-11-21T18:25:54Z", + "stargazers_count": 22, + "avatar": "https://avatars.githubusercontent.com/u/446744?v=4" }, { "title": "OnelineProton", "link": "https://github.com/lr-tech/OnelineProton", "description": "An oneline userChrome.css theme for Firefox, which aims to keep the Proton experience \n Compatibility: V89+", "image": "assets/img/themes/onelineproton.webp", - "tags": [ "one-line", "proton", "v89", "minimal", "dark", "light", "lr-tech", "v89" ] + "tags": [ + "one-line", + "proton", + "v89", + "minimal", + "dark", + "light", + "lr-tech", + "v89" + ], + "repository": "https://github.com/lr-tech/OnelineProton", + "pushed_at": "2024-06-27T04:03:42Z", + "stargazers_count": 129, + "avatar": "https://avatars.githubusercontent.com/u/75286649?v=4" }, { "title": "Firefox Compact Mode", "link": "https://github.com/dannycolin/fx-compact-mode", "description": "A compact mode that follows Firefox 89 (known as Proton) design system while using the same vertical space as the compact mode in Firefox 88 (known as Photon). \n Compatibility: V91+", "image": "assets/img/themes/fx-compact-mode.webp", - "tags": [ "dannycolin", "compact", "proton", "photon", "v91", "pure" ] + "tags": [ + "dannycolin", + "compact", + "proton", + "photon", + "v91", + "pure" + ], + "repository": "https://github.com/dannycolin/fx-compact-mode", + "pushed_at": "2021-12-11T08:15:44Z", + "stargazers_count": 127, + "avatar": "https://avatars.githubusercontent.com/u/7339076?v=4" }, { "title": "GruvFox by Alfarex2019", "link": "https://github.com/FirefoxCSSThemers/GruvFox", "description": "GruvFox is a remix of dpcdpc11's theme, featuring the gruvbox color palette.\n Compatibility: V91+", "image": "assets/img/themes/20930130265614-a7559ea7-70fd-44f9-a790-34c5c0e31493.webp", - "tags": [ "alfarexguy2019", "gruv", "dark", "pure", "v91" ] + "tags": [ + "alfarexguy2019", + "gruv", + "dark", + "pure", + "v91" + ], + "repository": "https://github.com/FirefoxCSSThemers/GruvFox", + "pushed_at": "2021-08-31T02:33:56Z", + "stargazers_count": 18, + "avatar": "https://avatars.githubusercontent.com/u/84518514?v=4" }, { "title": "Proton Square", "link": "https://github.com/leadweedy/Firefox-Proton-Square", "description": "Recreates the feel of Quantum with its squared tabs and menus. No rounded corners to be seen.\n Compatibility: V91+", "image": "assets/img/themes//24535ff_protonbutquantum.webp", - "tags": [ "squared", "v91", "pure", "quantum", "leadweedy" ] + "tags": [ + "squared", + "v91", + "pure", + "quantum", + "leadweedy" + ], + "repository": "https://github.com/leadweedy/Firefox-Proton-Square", + "pushed_at": "2024-08-02T04:13:16Z", + "stargazers_count": 109, + "avatar": "https://avatars.githubusercontent.com/u/72583854?v=4" }, { "title": "Natura for Firefox", "link": "https://github.com/firefoxcssthemers/natura-for-firefox", "description": "Nature theme for Firefox \n Compatibility: V91+", "image": "assets/img/themes/natura.webp", - "tags": [ "green", "yellow", "firefoxcssthemers", "alfarexguy2019", "v91", "pure" ] + "tags": [ + "green", + "yellow", + "firefoxcssthemers", + "alfarexguy2019", + "v91", + "pure" + ], + "repository": "https://github.com/firefoxcssthemers/natura-for-firefox", + "pushed_at": "2021-09-01T06:34:05Z", + "stargazers_count": 4, + "avatar": "https://avatars.githubusercontent.com/u/84518514?v=4" }, { "title": "MacOSVibrant", "link": "https://github.com/Tnings/MacosVibrant", "description": "A theme that uses MacOS Vibrancy and is styled after other Apple Apps \n Compatibility: V91+", "image": "assets/img/themes/MacOSVibrant.webp", - "tags": [ "Tnings", "transparency", "dark", "rounded", "v91" ] + "tags": [ + "Tnings", + "transparency", + "dark", + "rounded", + "v91" + ], + "repository": "https://github.com/Tnings/MacosVibrant", + "pushed_at": "2023-09-16T17:32:42Z", + "stargazers_count": 44, + "avatar": "https://avatars.githubusercontent.com/u/55812511?v=4" }, { "title": "Cascade", "link": "https://github.com/andreasgrafen/cascade", "description": "A responsive \"One-Line\" theme based on SimpleFox for the new ProtonUI. \n Compatibility: V91+", "image": "assets/img/themes/cascade.webp", - "tags": [ "andreasgrafen", "minial", "oneline", "responsive", "one-line", "proton", "light", "dark", "v91" ] + "tags": [ + "andreasgrafen", + "minial", + "oneline", + "responsive", + "one-line", + "proton", + "light", + "dark", + "v91" + ], + "repository": "https://github.com/andreasgrafen/cascade", + "pushed_at": "2024-02-12T02:22:29Z", + "stargazers_count": 1412, + "avatar": "https://avatars.githubusercontent.com/u/159644623?v=4" }, { "title": "Firefox GNOME theme", "link": "https://github.com/rafaelmardojai/firefox-gnome-theme", "description": "A bunch of CSS code to make Firefox look closer to GNOME's native apps. \n Compatibility: V91+", "image": "assets/img/themes/firefox-gnome-theme.webp", - "tags": [ "rafaelmardojai", "gnome", "v91", "rounded", "light", "dark", "v91" ] + "tags": [ + "rafaelmardojai", + "gnome", + "v91", + "rounded", + "light", + "dark", + "v91" + ], + "repository": "https://github.com/rafaelmardojai/firefox-gnome-theme", + "pushed_at": "2024-10-06T20:08:02Z", + "stargazers_count": 3460, + "avatar": "https://avatars.githubusercontent.com/u/6210397?v=4" }, { "title": "PretoFox", "link": "https://github.com/alfarexguy2019/pretofox", "description": "A Black n White AMOLED theme for Firefox, inspired by the Preto color scheme. \n Compatibility: V91+", "image": "assets/img/themes/PretoFox.webp", - "tags": [ "alfarexguy2019", "black", "white", "dark", "light", "v91" ] + "tags": [ + "alfarexguy2019", + "black", + "white", + "dark", + "light", + "v91" + ], + "repository": "https://github.com/alfarexguy2019/pretofox", + "pushed_at": "2022-01-21T14:48:03Z", + "stargazers_count": 11, + "avatar": "https://avatars.githubusercontent.com/u/78948152?v=4" }, { "title": "Elementary OS Odin Firefox theme", "link": "https://github.com/Zonnev/elementaryos-firefox-theme", "description": "This theme supports all the window buttons layouts from Tweaks and it blends into the elementary OS Odin user interface. \n Compatibility: V91+", "image": "assets/img/themes/firefox-eos6-theme.webp", - "tags": [ "Zonnev", "elementary-OS", "OS", "dark", "light" ] + "tags": [ + "Zonnev", + "elementary-OS", + "OS", + "dark", + "light" + ], + "repository": "https://github.com/Zonnev/elementaryos-firefox-theme", + "pushed_at": "2024-10-07T12:12:26Z", + "stargazers_count": 424, + "avatar": "https://avatars.githubusercontent.com/u/32688765?v=4" }, { "title": "Oneliner Deluxe", "link": "https://github.com/Doosty/Oneliner-Deluxe", "description": "Minimal, customizable and theme compatible \n Compatibility: V91+", "image": "assets/img/themes/Oneliner_Deluxe.webp", - "tags": [ "one-line", "Doosty", "v91" ] + "tags": [ + "one-line", + "Doosty", + "v91" + ], + "repository": "https://github.com/Doosty/Oneliner-Deluxe", + "pushed_at": "2022-01-18T22:09:39Z", + "stargazers_count": 17, + "avatar": "https://avatars.githubusercontent.com/u/747588?v=4" }, { "title": "Simple Oneliner", "link": "https://github.com/hakan-demirli/Firefox_Custom_CSS", "description": "A simple theme to maximize the vertical space of your monitor \n Compatibility: V91+", "image": "assets/img/themes/Simple_Oneliner.webp", - "tags": [ "Sidebery", "dark", "light", "pdf", "one-line", "hakan-demirli", "v91" ] + "tags": [ + "Sidebery", + "dark", + "light", + "pdf", + "one-line", + "hakan-demirli", + "v91" + ], + "repository": "https://github.com/hakan-demirli/Firefox_Custom_CSS", + "pushed_at": "2024-02-12T15:16:03Z", + "stargazers_count": 75, + "avatar": "https://avatars.githubusercontent.com/u/78746991?v=4" }, { "title": "GentleFox", "link": "https://github.com/alfarexguy2019/gentlefox", "description": "A Firefox theme, which features gentle curves, transparency and a minimal interface. \n Compatibility: V91+", "image": "assets/img/themes/GentleFox.webp", - "tags": [ "alfarexguy2019", "blur", "transparency", "rounded", "dark", "light" ] + "tags": [ + "alfarexguy2019", + "blur", + "transparency", + "rounded", + "dark", + "light" + ], + "repository": "https://github.com/alfarexguy2019/gentlefox", + "pushed_at": "2021-11-11T06:11:48Z", + "stargazers_count": 58, + "avatar": "https://avatars.githubusercontent.com/u/78948152?v=4" }, { "title": "Clean and Transparent", "link": "https://github.com/Filip-Sutkowy/blurclean-firefox-theme", "description": "Clean theme with as much transparency as Firefox lets you do \n Compatibility: V91+", "image": "assets/img/themes/Clean_and_Transparent.webp", - "tags": [ "Filip-Sutkowy", "blur", "pure", "dark", "light", "transparency", "v91" ] + "tags": [ + "Filip-Sutkowy", + "blur", + "pure", + "dark", + "light", + "transparency", + "v91" + ], + "repository": "https://github.com/Filip-Sutkowy/blurclean-firefox-theme", + "pushed_at": "2021-09-29T21:49:09Z", + "stargazers_count": 86, + "avatar": "https://avatars.githubusercontent.com/u/24491499?v=4" }, { "title": "Waterfall", "link": "https://github.com/crambaud/waterfall", "description": "A minimalist one line theme", "image": "assets/img/themes/waterfall.webp", - "tags": [ "crambaud", "minimal", "one-line", "mouse" ] + "tags": [ + "crambaud", + "minimal", + "one-line", + "mouse" + ], + "repository": "https://github.com/crambaud/waterfall", + "pushed_at": "2022-08-02T06:38:14Z", + "stargazers_count": 266, + "avatar": "https://avatars.githubusercontent.com/u/58910562?v=4" }, { "title": "Brave-Fox: The Reimagined Browser, Reimagined", "link": "https://github.com/Soft-Bred/Brave-Fox", "description": "Brave-Fox is a Firefox Theme that brings Brave's design elements into Firefox.", "image": "assets/img/themes//184007ilia7199au71.webp", - "tags": [ "brave", "pure", "js", "javascript", "Soft-Bred" ] + "tags": [ + "brave", + "pure", + "js", + "javascript", + "Soft-Bred" + ], + "repository": "https://github.com/Soft-Bred/Brave-Fox", + "pushed_at": "2022-11-22T08:47:02Z", + "stargazers_count": 139, + "avatar": "https://avatars.githubusercontent.com/u/60551230?v=4" }, { "title": "KeyFox- A minimal, keyboard centered OneLiner CSS.", "link": "https://github.com/alfarexguy2019/KeyFox", "description": "KeyFox is A simple, minimal OneLiner Keyboard-centered CSS for Firefox.", "image": "assets/img/themes//13268136501706-accca691-b9c3-4841-acd7-6bb843d2f422.webp", - "tags": [ "black", "dark", "white", "one-line", "alfarexguy2019" ] + "tags": [ + "black", + "dark", + "white", + "one-line", + "alfarexguy2019" + ], + "repository": "https://github.com/alfarexguy2019/KeyFox", + "pushed_at": "2022-01-21T15:28:42Z", + "stargazers_count": 114, + "avatar": "https://avatars.githubusercontent.com/u/78948152?v=4" }, { "title": "CompactFox", "link": "https://github.com/Tnings/CompactFox", "description": "A simple theme that compacts a lot of the UI elements", "image": "assets/img/themes/CompactFoxPreview.webp", - "tags": [ "compact", "dark", "light", "Tnings", "pure" ] + "tags": [ + "compact", + "dark", + "light", + "Tnings", + "pure" + ], + "repository": "https://github.com/Tnings/CompactFox", + "pushed_at": "2021-10-23T05:25:10Z", + "stargazers_count": 47, + "avatar": "https://avatars.githubusercontent.com/u/55812511?v=4" }, { "title": "AuroraFox- Auroral Firefox", "link": "https://github.com/alfarexguy2019/aurora-fox", "description": "AuroraFox is a clean rounded Firefox theme, made using CSS, to match with the trendy 'Aurora' Colour Palette.", "image": "assets/img/themes//18328141609919-befbc7f3-5199-4672-9ba1-8551d2a4e5a1.webp", - "tags": [ "dark", "minimal", "purple", "alfarexguy2019" ] + "tags": [ + "dark", + "minimal", + "purple", + "alfarexguy2019" + ], + "repository": "https://github.com/alfarexguy2019/aurora-fox", + "pushed_at": "2021-11-16T07:18:44Z", + "stargazers_count": 23, + "avatar": "https://avatars.githubusercontent.com/u/78948152?v=4" }, { "title": "starry-fox", "link": "https://github.com/sagars007/starry-fox", "description": "Firefox CSS stylesheets for the Dark Space Theme. Matching more UI elements with the theme.", "image": "assets/img/themes/starry-fox-resize.webp", - "tags": [ "sagars007", "dark", "compact", "darkspace", "stars", "nightsky", "gradient", "windows11" ] + "tags": [ + "sagars007", + "dark", + "compact", + "darkspace", + "stars", + "nightsky", + "gradient", + "windows11" + ], + "repository": "https://github.com/sagars007/starry-fox", + "pushed_at": "2024-05-18T15:17:34Z", + "stargazers_count": 124, + "avatar": "https://avatars.githubusercontent.com/u/56472130?v=4" }, { "title": "Firefox-GX", "link": "https://github.com/Godiesc/firefox-gx", "description": "Firefox Theme to Opera-GX skin Lovers.", "image": "assets/img/themes/firefox-gx.webp", - "tags": [ "Godiesc", "dark", "opera", "gx", "theme", "adapted", "light", "fuchsia" ] + "tags": [ + "Godiesc", + "dark", + "opera", + "gx", + "theme", + "adapted", + "light", + "fuchsia" + ], + "repository": "https://github.com/Godiesc/firefox-gx", + "pushed_at": "2024-10-01T12:53:30Z", + "stargazers_count": 812, + "avatar": "https://avatars.githubusercontent.com/u/22057609?v=4" }, { "title": "Elegant Fox", "link": "https://github.com/ayushhroyy/elegantfox", "description": "A firefox context menu theme and background wallpaper support with linux desktops being the main focus", "image": "assets/img/themes/elegantfox.webp ", - "tags": [ "ayushhroyy", "nord", "dark", "light", "adaptive" ] + "tags": [ + "ayushhroyy", + "nord", + "dark", + "light", + "adaptive" + ], + "repository": "https://github.com/ayushhroyy/elegantfox", + "pushed_at": "2024-07-22T15:20:50Z", + "stargazers_count": 33, + "avatar": "https://avatars.githubusercontent.com/u/77523847?v=4" }, { "title": "TYH Fox", "link": "https://github.com/tyuhao/TYHfox", "description": "A firefox Theme CSS", "image": "assets/img/themes/TYHFox.webp ", - "tags": ["TYHFox", "dark", "light", "adaptive" ] + "tags": [ + "TYHFox", + "dark", + "light", + "adaptive" + ], + "repository": "https://github.com/tyuhao/TYHfox", + "pushed_at": "2022-12-03T06:36:48Z", + "stargazers_count": 10, + "avatar": "https://avatars.githubusercontent.com/u/47909858?v=4" }, { "title": "AutoColor-Minimal-Proton", "link": "https://github.com/Neikon/AutoColor-Minimal-Proton", "description": "Some settings that together with the vivaldifox add-on create a minimalist theme whose color is the color of the website you are visiting.", "image": "assets/img/themes/AutoColor-Minimal-Proton.webp", - "tags": [ "vivaldi", "proton", "minimal", "autocolor", "dark", "light", "borderless", "adaptive", "compact", "one-line", "neikon"] + "tags": [ + "vivaldi", + "proton", + "minimal", + "autocolor", + "dark", + "light", + "borderless", + "adaptive", + "compact", + "one-line", + "neikon" + ], + "repository": "https://github.com/Neikon/AutoColor-Minimal-Proton", + "pushed_at": "2023-09-03T09:17:06Z", + "stargazers_count": 57, + "avatar": "https://avatars.githubusercontent.com/u/1765319?v=4" }, { "title": "SimpleFox Feather Edition", "link": "https://github.com/BlueFalconHD/SimpleFox-Feather/", "description": "A fork of SimpleFox that uses feather icons!", "image": "assets/img/themes/simplefox-feather.webp", - "tags": ["Simplefox", "Fork", "Icons", "BlueFalconHD"] + "tags": [ + "Simplefox", + "Fork", + "Icons", + "BlueFalconHD" + ], + "repository": "https://github.com/BlueFalconHD/SimpleFox-Feather/", + "pushed_at": "2022-10-31T04:33:20Z", + "stargazers_count": 71, + "avatar": "https://avatars.githubusercontent.com/u/72631767?v=4" }, { "title": "gale for Firefox", "link": "https://github.com/mgastonportillo/gale-for-ff", "description": "My CSS files to use with Firefox and Sidebery", "image": "assets/img/themes//8988rjy7uTd.webp", - "tags": [ "gale", "dark", "minimalistic", "adaptive", "compact", "autohide", "sidebar"] + "tags": [ + "gale", + "dark", + "minimalistic", + "adaptive", + "compact", + "autohide", + "sidebar" + ], + "repository": "https://github.com/mgastonportillo/gale-for-ff", + "pushed_at": "2024-09-22T14:15:06Z", + "stargazers_count": 120, + "avatar": "https://avatars.githubusercontent.com/u/106234166?v=4" }, { "title": "Firefox-UWP-Style-Theme-Omars-Edit", "link": "https://github.com/omarb737/Firefox-UWP-Style-Theme-Omars-Edit", "description": "A minimalistic-retro theme based off the UWP interface", "image": "assets/img/themes//321608U0N6E.webp", - "tags": [ "omarb737", "dark", "retro", "minimalist", "UWP" ] + "tags": [ + "omarb737", + "dark", + "retro", + "minimalist", + "UWP" + ], + "repository": "https://github.com/omarb737/Firefox-UWP-Style-Theme-Omars-Edit", + "pushed_at": "2022-07-31T05:44:56Z", + "stargazers_count": 4, + "avatar": "https://avatars.githubusercontent.com/u/41845164?v=4" }, { "title": "Modoki Firefox", "link": "https://github.com/soup-bowl/Modoki-Firefox", "description": "Bringing the classic Modern Modoki Netscape theme back", "image": "assets/img/themes/soupbowlmodoki.webp", - "tags": [ "soup-bowl", "classic", "netscape", "skeuomorphic", "light", "retro" ] + "tags": [ + "soup-bowl", + "classic", + "netscape", + "skeuomorphic", + "light", + "retro" + ], + "repository": "https://github.com/soup-bowl/Modoki-Firefox", + "pushed_at": "2024-09-18T16:56:50Z", + "stargazers_count": 71, + "avatar": "https://avatars.githubusercontent.com/u/11209477?v=4" }, { "title": "TileFox", "link": "https://github.com/davquar/tilefox", "description": "A minimalistic Firefox userChrome.css that integrates well with tiling window managers like i3", "image": "assets/img/themes/tilefox.webp", - "tags": [ "davquar", "light", "dark", "tile", "tilefox", "minimal", "minimalistic", "brutalist", "compact", "tiling", "dwm", "sway", "i3", "keyboard", "linux"] + "tags": [ + "davquar", + "light", + "dark", + "tile", + "tilefox", + "minimal", + "minimalistic", + "brutalist", + "compact", + "tiling", + "dwm", + "sway", + "i3", + "keyboard", + "linux" + ], + "repository": "https://github.com/davquar/tilefox", + "pushed_at": "2022-10-21T20:00:50Z", + "stargazers_count": 20, + "avatar": "https://avatars.githubusercontent.com/u/30431538?v=4" }, { "title": "AestheticFox", "link": "https://github.com/AidanMercer/AestheticFox", "description": "A minamist and aesthetic userstyle theme for Firefox", "image": "assets/img/themes/AestheticFox.webp", - "tags": [ "clean", "compact", "aestheticfox", "minimal", "minimalistic", "aesthetic"] - }, - { - "title": "Firefox 'Safari 15' Theme", - "link": "https://github.com/denizjcan/Firefox-Safari-15-Theme", - "description": "A Firefox theme that emulates the Safari 15 interface and new tab page.", - "image": "assets/img/themes//25940safari2.webp", - "tags": [ "clean", "compact", "oneline", "safari", "ventura", "aesthetic", "mac", "modern", "compact", "dark", "denizjcan", "safari" ] + "tags": [ + "clean", + "compact", + "aestheticfox", + "minimal", + "minimalistic", + "aesthetic" + ], + "repository": "https://github.com/AidanMercer/AestheticFox", + "pushed_at": "2023-05-22T18:16:55Z", + "stargazers_count": 31, + "avatar": "https://avatars.githubusercontent.com/u/96552673?v=4" }, { "title": "Firefox Onebar", "link": "https://git.gay/freeplay/Firefox-Onebar", "description": "A single bar for Firefox's UI.", "image": "assets/img/themes/onebar.webp", - "tags": [ "Freeplay", "oneline", "onebar", "compact", "minimal"] + "tags": [ + "Freeplay", + "oneline", + "onebar", + "compact", + "minimal" + ], + "repository": "https://git.gay/freeplay/Firefox-Onebar", + "pushed_at": "2024-05-11T01:01:47Z", + "stargazers_count": 8, + "avatar": "https://git.gay/avatars/25ef717d14080c74d7a215792ff28c5ba2590585985036074bf9c0723fd9c582?size=512" }, { "title": "Dracula", "link": "https://github.com/jannikbuscha/firefox-dracula", "description": "A Firefox CSS Theme that aims to recreate the look and feel of the Chromium version of Microsoft Edge in the style of Dracula.", "image": "assets/img/themes/dracula.webp", - "tags": [ "edge", "dark", "microsoft", "dracula" ] + "tags": [ + "edge", + "dark", + "microsoft", + "dracula" + ], + "repository": "https://github.com/jannikbuscha/firefox-dracula", + "pushed_at": "2024-07-10T07:08:42Z", + "stargazers_count": 20, + "avatar": "https://avatars.githubusercontent.com/u/74017697?v=4" }, { "title": "rounded-fox", "link": "https://github.com/Etesam913/rounded-fox", "description": "A minimalist theme that uses animation to hide visual clutter.", "image": "assets/img/themes/rounded_fox.webp", - "tags": ["clean", "compact", "minimalist", "dark", "light", "animation"] + "tags": [ + "clean", + "compact", + "minimalist", + "dark", + "light", + "animation" + ], + "repository": "https://github.com/Etesam913/rounded-fox", + "pushed_at": "2023-09-02T19:29:12Z", + "stargazers_count": 91, + "avatar": "https://avatars.githubusercontent.com/u/55665282?v=4" }, { "title": "Three Rows Simple Compact Clean CSS", "link": "https://github.com/hornster02/Firefox-Three-Rows-Simple-Compact-Clean-CSS", "description": "A compact theme based on use multiple rows", "image": "assets/img/themes/Three_Rows.webp", - "tags": ["simple", "compact", "minimalist","rows"] + "tags": [ + "simple", + "compact", + "minimalist", + "rows" + ], + "repository": "https://github.com/hornster02/Firefox-Three-Rows-Simple-Compact-Clean-CSS", + "pushed_at": "2024-09-01T18:45:28Z", + "stargazers_count": 15, + "avatar": "https://avatars.githubusercontent.com/u/127822397?v=4" }, { "title": "Bali10050's theme", "link": "https://github.com/Bali10050/FirefoxCSS", "description": "A minimal looking oneliner, with modular code for easy editing", "image": "assets/img/themes/Bali10050sPreview.webp", - "tags": [ "Bali10050", "oneline", "light", "dark", "linux", "windows", "rounded", "proton", "responsive", "minimalistic" ] + "tags": [ + "Bali10050", + "oneline", + "light", + "dark", + "linux", + "windows", + "rounded", + "proton", + "responsive", + "minimalistic" + ], + "repository": "https://github.com/Bali10050/FirefoxCSS", + "pushed_at": "2024-10-03T15:49:24Z", + "stargazers_count": 261, + "avatar": "https://avatars.githubusercontent.com/u/110120798?v=4" }, { "title": "ViceFox", "link": "https://vicefox.vercel.app", "description": "Don't ask why it's called 'ViceFox'", "image": "assets/img/themes/ViceFox.webp", - "tags": [ "clean", "compact", "safari", "minimal", "macos"] + "tags": [ + "clean", + "compact", + "safari", + "minimal", + "macos" + ], + "repository": "https://github.com/jtlw99/vicefox", + "pushed_at": "2023-12-15T05:13:17Z", + "stargazers_count": 44, + "avatar": "https://avatars.githubusercontent.com/u/93564256?v=4" }, { "title": "DarkMatter", "link": "https://github.com/BloodyHell619/Firefox-Theme-DarkMatter", "description": "An intensively worked on, and highly customized dark theme made for Firefox Proton, stretching darkness into every corner of the browser and perfecting even the tiniest details ", "image": "assets/img/themes/darkmatter.webp", - "tags": [ "dark", "Vertical", "squared", "proton"] + "tags": [ + "dark", + "Vertical", + "squared", + "proton" + ], + "repository": "https://github.com/BloodyHell619/Firefox-Theme-DarkMatter", + "pushed_at": "2024-01-19T11:44:43Z", + "stargazers_count": 67, + "avatar": "https://avatars.githubusercontent.com/u/65298540?v=4" }, { "title": "Fox11", "link": "https://github.com/Neikon/Fox11", "description": "A Firefox CSS themes with auto-color, Mica, auto-hide nav-bar support. Inspired in firefox-one , Edge/Chrome restyle 2023.", "image": "assets/img/themes/fox11.webp", - "tags": [ "vivaldi", "proton", "minimal", "autocolor", "dark", "light", "mica", "adaptive", "transparency", "neikon", "one-line"] + "tags": [ + "vivaldi", + "proton", + "minimal", + "autocolor", + "dark", + "light", + "mica", + "adaptive", + "transparency", + "neikon", + "one-line" + ], + "repository": "https://github.com/Neikon/Fox11", + "pushed_at": "2023-09-03T09:40:57Z", + "stargazers_count": 148, + "avatar": "https://avatars.githubusercontent.com/u/1765319?v=4" }, { "title": "zap's cool photon theme", "link": "https://github.com/zapSNH/zapsCoolPhotonTheme", "description": "Party like it's Firefox 57-88!", "image": "assets/img/themes/zaps-photon.webp", - "tags": [ "photon", "compact", "squared", "quantum" ] + "tags": [ + "photon", + "compact", + "squared", + "quantum" + ], + "repository": "https://github.com/zapSNH/zapsCoolPhotonTheme", + "pushed_at": "2024-10-02T13:13:04Z", + "stargazers_count": 69, + "avatar": "https://avatars.githubusercontent.com/u/134786889?v=4" }, { "title": "Firefox-ONE", "link": "https://github.com/Godiesc/firefox-one", "description": "Dress Firefox with the Opera One skin", "image": "assets/img/themes/firefox-one.webp", - "tags": ["Godiesc", "opera", "one", "opera-one", "firefox", "firefox-one", "theme", "adaptive", "tree", "tabs"] + "tags": [ + "Godiesc", + "opera", + "one", + "opera-one", + "firefox", + "firefox-one", + "theme", + "adaptive", + "tree", + "tabs" + ], + "repository": "https://github.com/Godiesc/firefox-one", + "pushed_at": "2024-10-06T02:05:32Z", + "stargazers_count": 302, + "avatar": "https://avatars.githubusercontent.com/u/22057609?v=4" }, { "title": "Essence", "link": "https://github.com/JarnotMaciej/Essence", "description": "Compact, beautiful and minimalistic theme for the Firefox web browser.", "image": "assets/img/themes/essence.webp", - "tags": [ "compact", "minimal", "light", "modern", "oneline", "rounded", "clean" ] + "tags": [ + "compact", + "minimal", + "light", + "modern", + "oneline", + "rounded", + "clean" + ], + "repository": "https://github.com/JarnotMaciej/Essence", + "pushed_at": "2024-07-08T10:58:01Z", + "stargazers_count": 29, + "avatar": "https://avatars.githubusercontent.com/u/92025751?v=4" }, { "title": "minimal-one-line-firefox", "link": "https://github.com/ttntm/minimal-one-line-firefox", "description": "A minimal oneliner, to minimizing the space used for url and tab bar", "image": "assets/img/themes/molff.webp", - "tags": ["oneline", "light", "dark", "squared", "compact", "minimalistic"] + "tags": [ + "oneline", + "light", + "dark", + "squared", + "compact", + "minimalistic" + ], + "repository": "https://github.com/ttntm/minimal-one-line-firefox", + "pushed_at": "2024-06-15T16:07:30Z", + "stargazers_count": 42, + "avatar": "https://avatars.githubusercontent.com/u/41571384?v=4" }, { "title": "RealFire", "link": "https://github.com/Hakanbaban53/RealFire", "description": "A minimalist animated oneliner theme for Firefox perfectly matching Real Dark", "image": "assets/img/themes/RealFire-main.webp", - "tags": ["oneline", "responsive", "light", "dark", "animation", "rounded", "compact", "minimalistic", "black"] - }, - { - "title": "Firefox-Alpha", - "link": "https://github.com/Tagggar/Firefox-Alpha", - "description": "Super clear desktop browser with zero buttons and gesture controls", - "image": "assets/img/themes/Firefox-Alpha.webp", - "tags": ["Tagggar", "alpha", "responsive", "light", "dark", "animation", "rounded", "compact", "clear", "clean", "minimalistic", "minimal", "simple", "gestures"] - }, - { - "title": "Dark Star", - "link": "https://gitlab.com/ivelieu/dark-star-firefox-skin", - "description": "A color-customizable, zero navbar padding skin, modified from Starry Fox", - "image": "assets/img/themes//11608darkstar_3.webp", - "tags": [ "Ivelieu", "dark", "minimal", "zeropadding", "customizable"] - }, - { - "title": "ImpossibleFox", - "link": "https://github.com/Naezr/ImpossibleFox", - "description": "A simple and fast one-line theme for Firefox inspired by Safari's compact layout. ", - "image": "assets/img/themes/ImpossibleFox.webp", - "tags": [ "Naezr", "dark", "light", "oneline" ] + "tags": [ + "oneline", + "responsive", + "light", + "dark", + "animation", + "rounded", + "compact", + "minimalistic", + "black" + ], + "repository": "https://github.com/Hakanbaban53/RealFire", + "pushed_at": "2024-09-09T17:35:33Z", + "stargazers_count": 28, + "avatar": "https://avatars.githubusercontent.com/u/93117749?v=4" + }, + { + "title": "Firefox-Alpha", + "link": "https://github.com/Tagggar/Firefox-Alpha", + "description": "Super clear desktop browser with zero buttons and gesture controls", + "image": "assets/img/themes/Firefox-Alpha.webp", + "tags": [ + "Tagggar", + "alpha", + "responsive", + "light", + "dark", + "animation", + "rounded", + "compact", + "clear", + "clean", + "minimalistic", + "minimal", + "simple", + "gestures" + ], + "repository": "https://github.com/Tagggar/Firefox-Alpha", + "pushed_at": "2024-05-26T06:03:23Z", + "stargazers_count": 233, + "avatar": "https://avatars.githubusercontent.com/u/81634877?v=4" + }, + { + "title": "Dark Star", + "link": "https://gitlab.com/ivelieu/dark-star-firefox-skin", + "description": "A color-customizable, zero navbar padding skin, modified from Starry Fox", + "image": "assets/img/themes//11608darkstar_3.webp", + "tags": [ + "Ivelieu", + "dark", + "minimal", + "zeropadding", + "customizable" + ], + "repository": "https://gitlab.com/ivelieu/dark-star-firefox-skin", + "pushed_at": "2023-11-19T00:38:22.034Z", + "stargazers_count": 1, + "avatar": "/uploads/-/system/user/avatar/18385334/avatar.png" + }, + { + "title": "ImpossibleFox", + "link": "https://github.com/Naezr/ImpossibleFox", + "description": "A simple and fast one-line theme for Firefox inspired by Safari's compact layout. ", + "image": "assets/img/themes/ImpossibleFox.webp", + "tags": [ + "Naezr", + "dark", + "light", + "oneline" + ], + "repository": "https://github.com/Naezr/ImpossibleFox", + "pushed_at": "2024-05-24T15:24:49Z", + "stargazers_count": 24, + "avatar": "https://avatars.githubusercontent.com/u/95460152?v=4" }, { "title": "SideFox", "link": "https://github.com/rainbowflesh/Me-Personal-Firefox-Settup", "description": "MS Edge style, sidebar, blur, and more.", "image": "assets/img/themes/sidefox.webp", - "tags": [ "sidebar", "animated", "simple", "responsive", "linux", "windows", "macos"] + "tags": [ + "sidebar", + "animated", + "simple", + "responsive", + "linux", + "windows", + "macos" + ], + "repository": "https://github.com/rainbowflesh/Me-Personal-Firefox-Settup", + "pushed_at": "2024-10-03T17:19:20Z", + "stargazers_count": 21, + "avatar": "https://avatars.githubusercontent.com/u/20819692?v=4" }, { "title": "arcadia", "link": "https://github.com/tyrohellion/arcadia", "description": "Minimal Firefox theme and user.js focused on speed and design", "image": "assets/img/themes/arcadia.webp", - "tags": [ "tyro", "dark", "minimal", "clean", "hovercards", "simple", "compact", "minimalistic" ] + "tags": [ + "tyro", + "dark", + "minimal", + "clean", + "hovercards", + "simple", + "compact", + "minimalistic" + ], + "repository": "https://github.com/tyrohellion/arcadia", + "pushed_at": "2024-08-31T06:56:13Z", + "stargazers_count": 13, + "avatar": "https://avatars.githubusercontent.com/u/51808054?v=4" }, { "title": "Firefox Plus", "link": "https://github.com/amnweb/firefox-plus", "description": "Firefox Plus, CSS tweaks for Firefox ", "image": "assets/img/themes//6299firefox-26-11-2023.webp", - "tags": ["firefox","firefox-customization","minimal","firefox-theme","dark"] + "tags": [ + "firefox", + "firefox-customization", + "minimal", + "firefox-theme", + "dark" + ], + "repository": "https://github.com/amnweb/firefox-plus", + "pushed_at": "2024-09-21T17:36:10Z", + "stargazers_count": 204, + "avatar": "https://avatars.githubusercontent.com/u/16545063?v=4" }, { "title": "Shina Fox", "link": "https://github.com/Shina-SG/Shina-Fox", "description": "A Minimal, Cozy, Vertical Optimized Firefox Theme", "image": "assets/img/themes/Shina.webp", - "tags": [ "Shina", "Vertical", "Sidebery", "Minimal", "Dark", "Light", "Adaptive" ] + "tags": [ + "Shina", + "Vertical", + "Sidebery", + "Minimal", + "Dark", + "Light", + "Adaptive" + ], + "repository": "https://github.com/Shina-SG/Shina-Fox", + "pushed_at": "2024-05-24T23:41:47Z", + "stargazers_count": 406, + "avatar": "https://avatars.githubusercontent.com/u/135497382?v=4" }, { "title": "ArnimFox", "link": "https://github.com/SecondMikasa/ArnimFox", "description": "A Minimalist Dark Themed Firefox enabling vertical tabs support and modern URL Bar", "image": "assets/img/themes/ArnimFox.webp", - "tags": ["Minimalistic", "Vertical", "Sidebery", "Dark", "Sidebar"] + "tags": [ + "Minimalistic", + "Vertical", + "Sidebery", + "Dark", + "Sidebar" + ], + "repository": "https://github.com/SecondMikasa/ArnimFox", + "pushed_at": "2024-01-28T10:20:05Z", + "stargazers_count": 8, + "avatar": "https://avatars.githubusercontent.com/u/129872339?v=4" }, { "title": "Firefox Rounded Theme", "link": "https://github.com/Khalylexe/Firefox-Rounded-Theme", "description": "Just a Firefox CSS to make it more rounded ;) ", "image": "assets/img/themes/Khalyl.webp", - "tags": [ "Khalylexe", "Dark", "Rounded", "firefox" ] + "tags": [ + "Khalylexe", + "Dark", + "Rounded", + "firefox" + ], + "repository": "https://github.com/Khalylexe/Firefox-Rounded-Theme", + "pushed_at": "2024-02-09T20:20:24Z", + "stargazers_count": 21, + "avatar": "https://avatars.githubusercontent.com/u/119526243?v=4" }, { "title": "ShyFox", "link": "https://github.com/Naezr/ShyFox", "description": "A very shy little theme that hides the entire browser interface in the window border", "image": "assets/img/themes/shyfox.webp", - "tags": [ "Naezr", "minimal" ] + "tags": [ + "Naezr", + "minimal" + ], + "repository": "https://github.com/Naezr/ShyFox", + "pushed_at": "2024-10-06T08:53:13Z", + "stargazers_count": 1464, + "avatar": "https://avatars.githubusercontent.com/u/95460152?v=4" }, { "title": "greenyfox", "link": "https://github.com/alan-ar1/greenyfox", "description": "A modern dark theme with macos title bar buttons and Iosevka font", "image": "assets/img/themes//9037DGTAHYA.webp", - "tags": [ "alan-ar1", "Dark", "title-bar", "minimal", "Iosevka"] + "tags": [ + "alan-ar1", + "Dark", + "title-bar", + "minimal", + "Iosevka" + ], + "repository": "https://github.com/alan-ar1/greenyfox", + "pushed_at": "2024-01-30T17:55:07Z", + "stargazers_count": 4, + "avatar": "https://avatars.githubusercontent.com/u/110337684?v=4" }, { "title": "98/95fox", "link": "https://github.com/osem598/Firefox-98", "description": "Chicago 95 & Windows95/98-like theme for firefox", "image": "assets/img/themes/ff95.webp", - "tags": [ "osem598", "Light", "Retro", "Chicago", "98", "95"] - }, - { - "title": "ArcWTF", - "link": "https://github.com/KiKaraage/ArcWTF/", - "description": "UserChrome.css theme to bring Arc Browser look from Windows to Firefox! ", - "image": "assets/img/themes/arcwtf.webp", - "tags": [ "KiKaraage", "dark", "light", "Arc Browser", "Sidebery", "vertical tabs", "autohide", "minimal" ] + "tags": [ + "osem598", + "Light", + "Retro", + "Chicago", + "98", + "95" + ], + "repository": "https://github.com/osem598/Firefox-98", + "pushed_at": "2024-08-26T00:25:34Z", + "stargazers_count": 26, + "avatar": "https://avatars.githubusercontent.com/u/67332812?v=4" + }, + { + "title": "ArcWTF", + "link": "https://github.com/KiKaraage/ArcWTF/", + "description": "UserChrome.css theme to bring Arc Browser look from Windows to Firefox! ", + "image": "assets/img/themes/arcwtf.webp", + "tags": [ + "KiKaraage", + "dark", + "light", + "Arc Browser", + "Sidebery", + "vertical tabs", + "autohide", + "minimal" + ], + "repository": "https://github.com/KiKaraage/ArcWTF/", + "pushed_at": "2024-09-02T12:22:04Z", + "stargazers_count": 1144, + "avatar": "https://avatars.githubusercontent.com/u/10529881?v=4" }, { "title": "FrameUI for Firefox", "link": "https://github.com/FineFuturity/FrameUIForFirefox/", "description": "A new way to view your web content. Like looking at photos printed from an old Polaroid camera.", "image": "assets/img/themes/FrameUIScreenshot.webp", - "tags": [ "FineFuturity", "one line", "vertical tabs", "Sidebery", "Tab Center Reborn", "toolbars on bottom", "immersive", "minimal" ] + "tags": [ + "FineFuturity", + "one line", + "vertical tabs", + "Sidebery", + "Tab Center Reborn", + "toolbars on bottom", + "immersive", + "minimal" + ], + "repository": "https://github.com/FineFuturity/FrameUIForFirefox/", + "pushed_at": "2024-03-21T13:45:27Z", + "stargazers_count": 56, + "avatar": "https://avatars.githubusercontent.com/u/19298107?v=4" }, { "title": "arcfox", "link": "https://github.com/betterbrowser/arcfox", "description": "make firefox flow like arc", "image": "assets/img/themes/arcfox.webp", - "tags": [ "nikollesan", "dark", "light", "luanderfarias", "bettterbrowser" ] + "tags": [ + "nikollesan", + "dark", + "light", + "luanderfarias", + "bettterbrowser" + ], + "repository": "https://github.com/betterbrowser/arcfox", + "pushed_at": "2024-09-13T02:07:11Z", + "stargazers_count": 974, + "avatar": "https://avatars.githubusercontent.com/u/126220586?v=4" }, { "title": "WhiteSur", "link": "https://github.com/vinceliuice/WhiteSur-firefox-theme", "description": "A MacOSX Safari theme for Firefox 80+", "image": "assets/img/themes/whitesur_vinceliuice.webp", - "tags": [ "vinceliuice", "dark", "light", "MacOSX ", "Monterey", "safari", "mac", "oneline" ] + "tags": [ + "vinceliuice", + "dark", + "light", + "MacOSX ", + "Monterey", + "safari", + "mac", + "oneline" + ], + "repository": "https://github.com/vinceliuice/WhiteSur-firefox-theme", + "pushed_at": "2024-09-05T12:40:12Z", + "stargazers_count": 343, + "avatar": "https://avatars.githubusercontent.com/u/7604295?v=4" }, { "title": "Another Oneline", "link": "https://github.com/mimipile/firefoxCSS", "description": "Another simple, oneline, minimal, keyboard-centered Firefox CSS theme.", "image": "assets/img/themes/screenshot-site.webp", - "tags": [ "mimipile", "dark", "light", "adaptative", "onebar", "oneline", "minimal", "keyboard", "keyboard centered" ] + "tags": [ + "mimipile", + "dark", + "light", + "adaptative", + "onebar", + "oneline", + "minimal", + "keyboard", + "keyboard centered" + ], + "repository": "https://github.com/mimipile/firefoxCSS", + "pushed_at": "2024-08-26T09:06:51Z", + "stargazers_count": 89, + "avatar": "https://avatars.githubusercontent.com/u/74282993?v=4" }, { "title": "MacFox-Theme", "link": "https://github.com/d0sse/macFox-theme", "description": "Safari-like minimalistic theme with system accent color", "image": "assets/img/themes/d0sse_mac_fox_screen.webp", - "tags": [ "dark", "light", "accent", "minimal", "macos", "safari", "mac", "autocolor"] + "tags": [ + "dark", + "light", + "accent", + "minimal", + "macos", + "safari", + "mac", + "autocolor" + ], + "repository": "https://github.com/d0sse/macFox-theme", + "pushed_at": "2024-09-15T10:06:38Z", + "stargazers_count": 20, + "avatar": "https://avatars.githubusercontent.com/u/16508608?v=4" }, { "title": "EdgyArc Fr", "link": "https://github.com/artsyfriedchicken/EdgyArc-fr/", "description": "Combining the sleekness of Microsoft Edge and the aesthetics of the Arc browser", "image": "assets/img/themes/edgyarc-fr.webp", - "tags": [ "artsyFriedChicken", "dark", "light", "macOS", "mac", "arc", "edge", "translucent", "blur", "sidebery", "Vertical Tabs" ] + "tags": [ + "artsyFriedChicken", + "dark", + "light", + "macOS", + "mac", + "arc", + "edge", + "translucent", + "blur", + "sidebery", + "Vertical Tabs" + ], + "repository": "https://github.com/artsyfriedchicken/EdgyArc-fr/", + "pushed_at": "2024-06-29T17:41:05Z", + "stargazers_count": 591, + "avatar": "https://avatars.githubusercontent.com/u/100123017?v=4" }, { "title": "Blurfox", "link": "https://github.com/safak45xx/Blurfox", "description": "A Firefox theme", - "image": "assets/img/themes/blurfox.webp", - "tags": ["blur", "minimal","oneline"] + "image": "assets/img/themes/blurfox.webp", + "tags": [ + "blur", + "minimal", + "oneline" + ], + "repository": "https://github.com/safak45xx/Blurfox", + "pushed_at": "2024-05-25T09:40:57Z", + "stargazers_count": 106, + "avatar": "https://avatars.githubusercontent.com/u/141409983?v=4" }, { "title": "FF Ultima", "link": "https://github.com/soulhotel/FF-ULTIMA", "description": "Native Vertical Tabs, keep your sidebar, no extensions. No overthinking. FF Ultima", "image": "assets/img/themes/FF_Ultima.webp", - "tags": ["vertical tabs", "minimal","lightweight","customizable","dark","light"] + "tags": [ + "vertical tabs", + "minimal", + "lightweight", + "customizable", + "dark", + "light" + ], + "repository": "https://github.com/soulhotel/FF-ULTIMA", + "pushed_at": "2024-10-07T09:37:34Z", + "stargazers_count": 516, + "avatar": "https://avatars.githubusercontent.com/u/155501797?v=4" }, { "title": "Firefox Xtra Compact", "link": "https://github.com/CarterSnich/firefox-xtra-compact", "description": "Aims to make Firefox more compact and give a tiny bit more web view area for low-screen devices.", "image": "assets/img/themes/xtracompact.webp", - "tags": [ "CarterSnich", "compact", "themeless"] + "tags": [ + "CarterSnich", + "compact", + "themeless" + ], + "repository": "https://github.com/CarterSnich/firefox-xtra-compact", + "pushed_at": "2024-06-01T10:09:51Z", + "stargazers_count": 14, + "avatar": "https://avatars.githubusercontent.com/u/52433531?v=4" }, { "title": "Aero Firefox", "link": "https://github.com/SandTechStuff/AeroFirefox", "description": "Brings the Windows 7 titlebar buttons to modern versions of Firefox", "image": "assets/img/themes/aeroFirefox.webp", - "tags": ["aero","dark","light","lightweight","windows7","minimal"] + "tags": [ + "aero", + "dark", + "light", + "lightweight", + "windows7", + "minimal" + ], + "repository": "https://github.com/SandTechStuff/AeroFirefox", + "pushed_at": "2024-07-16T07:53:59Z", + "stargazers_count": 4, + "avatar": "https://avatars.githubusercontent.com/u/164842290?v=4" }, { "title": "PotatoFox", "link": "https://codeberg.org/awwpotato/PotatoFox", "description": "A compact and minimal firefox theme using Sidebery", "image": "assets/img/themes/PotatoFox.webp", - "tags": ["minimal","compact","vertical tabs","Sidebery","arc"] + "tags": [ + "minimal", + "compact", + "vertical tabs", + "Sidebery", + "arc" + ], + "repository": "https://codeberg.org/awwpotato/PotatoFox", + "pushed_at": "2024-10-01T17:44:25Z", + "stargazers_count": 23, + "avatar": "https://codeberg.org/avatars/a740ac100c2158f4a56d1e9ae31c5ad7f79ab7c463e793223cb97828dc623bdb" }, { "title": "Minimal-Arc", "link": "https://github.com/zayihu/Minimal-Arc", "description": "Minimal light Firefox theme with Arc like design with vertical tabs", "image": "assets/img/themes/minimal_arc.webp", - "tags": ["minimal", "compact", "vertical-tabs", "Sidebery", "light", "Arc Browser"] + "tags": [ + "minimal", + "compact", + "vertical-tabs", + "Sidebery", + "light", + "Arc Browser" + ], + "repository": "https://github.com/zayihu/Minimal-Arc", + "pushed_at": "2024-09-07T06:13:59Z", + "stargazers_count": 45, + "avatar": "https://avatars.githubusercontent.com/u/167391787?v=4" }, { "title": "SnowFox", "link": "https://github.com/naveensagar765/SnowFox", "description": "Modern blue glass theme with side bookmark bar", "image": "assets/img/themes/snowfox.webp", - "tags": [ "moder", "blue", "side-bookmark-bar","home page"] + "tags": [ + "moder", + "blue", + "side-bookmark-bar", + "home page" + ], + "repository": "https://github.com/naveensagar765/SnowFox", + "pushed_at": "2024-08-09T05:27:54Z", + "stargazers_count": 5, + "avatar": "https://avatars.githubusercontent.com/u/155926112?v=4" }, { "title": "AnimatedFox", "link": "https://github.com/RemyIsCool/AnimatedFox", "description": "A minimal Firefox/LibreWolf theme with satisfying animations and a hidden URL bar.", "image": "assets/img/themes/animatedfox.webp", - "tags": ["RemyIsCool", "dark", "minimal", "hidden url bar", "animations"] + "tags": [ + "RemyIsCool", + "dark", + "minimal", + "hidden url bar", + "animations" + ], + "repository": "https://github.com/RemyIsCool/AnimatedFox", + "pushed_at": "2024-07-16T13:55:19Z", + "stargazers_count": 148, + "avatar": "https://avatars.githubusercontent.com/u/97812130?v=4" }, { "title": "Quietfox Reborn", "link": "https://github.com/TheGITofTeo997/quietfoxReborn", "description": "Resurrecting a very Clean Firefox userChrome Mod ", "image": "assets/img/themes/20053home.webp", - "tags": [ "Teo", "sleek", "minimal", "quiet" ] + "tags": [ + "Teo", + "sleek", + "minimal", + "quiet" + ], + "repository": "https://github.com/TheGITofTeo997/quietfoxReborn", + "pushed_at": "2024-10-03T10:40:19Z", + "stargazers_count": 65, + "avatar": "https://avatars.githubusercontent.com/u/26879664?v=4" }, { "title": "GlassyFox", "link": "https://github.com/AnhNguyenlost13/GlassyFox", "description": "Keeps the original new tab page layout while making it look as glassy as possible.", "image": "assets/img/themes/glassyfox.webp", - "tags": [ "blur", "AnhNguyenlost13" ] + "tags": [ + "blur", + "AnhNguyenlost13" + ], + "repository": "https://github.com/AnhNguyenlost13/GlassyFox", + "pushed_at": "2024-10-04T03:38:39Z", + "stargazers_count": 5, + "avatar": "https://avatars.githubusercontent.com/u/94160753?v=4" }, { "title": "98/95fox Xtra Compact", "link": "https://github.com/programneer/Firefox-98-Xtra-Compact", "description": "The mix of nostalgia and compact.", "image": "assets/img/themes/ff95xtracompact.webp", - "tags": [ "Programneer", "Light", "Retro", "Chicago", "98", "95", "compact" ] + "tags": [ + "Programneer", + "Light", + "Retro", + "Chicago", + "98", + "95", + "compact" + ], + "repository": "https://github.com/programneer/Firefox-98-Xtra-Compact", + "pushed_at": "2024-04-19T10:50:06Z", + "stargazers_count": 3, + "avatar": "https://avatars.githubusercontent.com/u/132811907?v=4" }, { "title": "FireFox OneLine Navbar", "link": "https://github.com/FawazBinSaleem/FireFoxOneLinerCSS", "description": "A compact oneliner navbar css theme.", "image": "assets/img/themes/fireFoxOneLinerCSS.webp", - "tags": ["oneline", "black color", "amoled", "oneliner", "navbar", "One Line", "compact" ] + "tags": [ + "oneline", + "black color", + "amoled", + "oneliner", + "navbar", + "One Line", + "compact" + ], + "repository": "https://github.com/FawazBinSaleem/FireFoxOneLinerCSS", + "pushed_at": "2024-08-22T14:19:05Z", + "stargazers_count": 9, + "avatar": "https://avatars.githubusercontent.com/u/48177454?v=4" }, { "title": "Monochrome Neubrutalism Firefox Simple", "link": "https://github.com/Kaskapa/Monochrome-Neubrutalism-Firefox-Theme", "description": "A simple light theme I made to explore the world of Firefox theming.", "image": "assets/img/themes/monochromeNeubrutalism.webp", - "tags": [ "light", "neubrutalislm", "monochrome", "simple", "Kaskapa" ] + "tags": [ + "light", + "neubrutalislm", + "monochrome", + "simple", + "Kaskapa" + ], + "repository": "https://github.com/Kaskapa/Monochrome-Neubrutalism-Firefox-Theme", + "pushed_at": "2024-06-02T13:53:52Z", + "stargazers_count": 7, + "avatar": "https://avatars.githubusercontent.com/u/100031511?v=4" }, { "title": "minimalistest oneliner", - "link": "https://github.com/yari-dog/minimalistest-oneliner-librewolf", - "description": "buttons are for nerds.", - "image": "assets/img/themes/minimalist-oneliner.webp", - "tags": [ "simple", "oneliner", "oneline", "compact" ] - }, - { - "title": "Arc UI", - "link": "https://github.com/dxdotdev/arc-ui", - "description": "Make your Firefox like the Arc Browser.", - "image": "assets/img/themes/29957ui.webp", - "tags": [ "dxdotdev", "arc browser", "compact", "modern" ] - }, - { - "title": "Material Fox Updated", - "link": "https://github.com/edelvarden/material-fox-updated", - "description": "🦊 Firefox user CSS theme looks similar to Chrome.", - "image": "assets/img/themes/material-fox-updated-preview.webp", - "tags": [ "dark", "light", "rtl", "customizable", "material", "material-design", "refresh", "modern", "updated" ] + "link": "https://github.com/yari-dog/minimalistest-oneliner-librewolf", + "description": "buttons are for nerds.", + "image": "assets/img/themes/minimalist-oneliner.webp", + "tags": [ + "simple", + "oneliner", + "oneline", + "compact" + ], + "repository": "https://github.com/yari-dog/minimalistest-oneliner-librewolf", + "pushed_at": "2024-08-28T10:11:56Z", + "stargazers_count": 5, + "avatar": "https://avatars.githubusercontent.com/u/75224849?v=4" + }, + { + "title": "Arc UI", + "link": "https://github.com/dxdotdev/arc-ui", + "description": "Make your Firefox like the Arc Browser.", + "image": "assets/img/themes/29957ui.webp", + "tags": [ + "dxdotdev", + "arc browser", + "compact", + "modern" + ], + "repository": "https://github.com/dxdotdev/arc-ui", + "pushed_at": "2024-09-13T20:26:29Z", + "stargazers_count": 18, + "avatar": "https://avatars.githubusercontent.com/u/157044645?v=4" + }, + { + "title": "Material Fox Updated", + "link": "https://github.com/edelvarden/material-fox-updated", + "description": "🦊 Firefox user CSS theme looks similar to Chrome.", + "image": "assets/img/themes/material-fox-updated-preview.webp", + "tags": [ + "dark", + "light", + "rtl", + "customizable", + "material", + "material-design", + "refresh", + "modern", + "updated" + ], + "repository": "https://github.com/edelvarden/material-fox-updated", + "pushed_at": "2024-10-03T14:14:57Z", + "stargazers_count": 302, + "avatar": "https://avatars.githubusercontent.com/u/42596339?v=4" } -] +] \ No newline at end of file From 0cc7b11e9916b2b65749845c41e7c523b56dda7b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20F=2E=20=28BeyondMagic/koetemagie=29?= Date: Fri, 11 Oct 2024 03:54:00 -0300 Subject: [PATCH 15/23] docs(scripts): add small guide for contribution for theme info --- README.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/README.md b/README.md index af8605d..3c0705b 100644 --- a/README.md +++ b/README.md @@ -68,6 +68,27 @@ A collection site of Firefox userchrome themes, mostly from FirefoxCSS Reddit.What do you think =?

Feel free to send me any feedback via issue or my twitter @Neikon66.

From 79a36fec5e68c336c690dc3b9a3241c741ebf97a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20F=2E=20=28BeyondMagic/koetemagie=29?= Date: Fri, 11 Oct 2024 03:56:33 -0300 Subject: [PATCH 16/23] docs(contribution): add repository field in guide to add theme --- README.md | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 3c0705b..05e57d9 100644 --- a/README.md +++ b/README.md @@ -36,13 +36,15 @@ A collection site of Firefox userchrome themes, mostly from FirefoxCSS Reddit. Date: Fri, 11 Oct 2024 03:58:58 -0300 Subject: [PATCH 17/23] docs(issues): add repository field for issue template when adding theme --- .github/ISSUE_TEMPLATE/-send-your-theme.md | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/-send-your-theme.md b/.github/ISSUE_TEMPLATE/-send-your-theme.md index aa74779..e9f988f 100644 --- a/.github/ISSUE_TEMPLATE/-send-your-theme.md +++ b/.github/ISSUE_TEMPLATE/-send-your-theme.md @@ -1,9 +1,9 @@ --- -name: "❤ Send Your Theme" +name: "❤ Send Your Theme" about: An easy way to submit your theme if you don't know how to do it via pull request. title: "[NEWTHEME] Name of your theme" labels: new theme -assignees: Neikon +assignees: Neikon, BeyondMagic --- @@ -12,10 +12,11 @@ Replace the .......... with the corresponding information. Example: ``` { "title": "the best dark theme", - "link": "https://github.com/myTheme", + "link": "https://github.com/myuser/myTheme", "description": "a dark theme", - "image": "https://raw.githubusercontent.com/previewthemepicture.png" - "tags": [ "John", "dark", "minimal","oneline", "............." ] + "image": "https://raw.githubusercontent.com/previewthemepicture.png", + "tags": [ "John", "dark", "minimal","oneline", "............." ], + "repository": "https://github.com/myuser/myTheme" } ``` ################# DELETE UNTIL HERE ################# @@ -25,7 +26,8 @@ Replace the .......... with the corresponding information. Example: "title": "..........", "link": "..........", "description": "..........", - "image": ".........." - "tags": [ "your username/name", "theme type: dark", "theme type: light", "............." ] + "image": "..........", + "tags": [ "your username/name", "theme type: dark", "theme type: light", "............." ], + "repository": ".........." } ``` From 79e73e44f1372d3c9bc4caf19f46167b9928e7e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20F=2E=20=28BeyondMagic/koetemagie=29?= Date: Fri, 11 Oct 2024 04:11:34 -0300 Subject: [PATCH 18/23] fix(tests): allow theme to have more fields and accept repository field --- tests/themes.check.js | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/tests/themes.check.js b/tests/themes.check.js index f21f5aa..518bf1c 100644 --- a/tests/themes.check.js +++ b/tests/themes.check.js @@ -11,15 +11,17 @@ themes.forEach((entry, index) => { keys[1] !== 'link' || keys[2] !== 'description' || keys[3] !== 'image' || - keys[4] !== 'tags' + keys[4] !== 'tags' || + keys[5] !== 'repository' const objectTypes = typeof entry[keys[0]] !== 'string' || typeof entry[keys[1]] !== 'string' || typeof entry[keys[2]] !== 'string' || typeof entry[keys[3]] !== 'string' || - typeof entry[keys[4]] !== 'object' + typeof entry[keys[4]] !== 'object' !! + typeof entry[keys[5]] !== 'string' if (typeof entry !== 'object') currentBugs.push('This theme is not an object.') - if (keys.length !== 5) currentBugs.push(`Is expected to have 5 key but has ${keys.length}.`) + if (keys.length < 6) currentBugs.push(`Is expected to have at least 6 keys, but has ${keys.length}.`) if (objectKeys) currentBugs.push('Verify name of object keys, respectively, it must be: title, link, description, image, tags') if (objectTypes) currentBugs.push('All object entries must be strings with the exception of tags, which is an array!') From ec55b3c724854701f23c7d55cc5d6baaafd43d60 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20F=2E=20=28BeyondMagic/koetemagie=29?= Date: Fri, 11 Oct 2024 04:13:09 -0300 Subject: [PATCH 19/23] fix(tests): remove img-switch.sh, it's not used anymore --- tests/img-switch.sh | 73 --------------------------------------------- 1 file changed, 73 deletions(-) delete mode 100755 tests/img-switch.sh diff --git a/tests/img-switch.sh b/tests/img-switch.sh deleted file mode 100755 index 523267e..0000000 --- a/tests/img-switch.sh +++ /dev/null @@ -1,73 +0,0 @@ -#!/bin/bash -# -# this script will download the images of all the new themes -# then put those into /images/themes in the format webp -# change the file /themes.json for the new paths (docs/assets/img/themes/) -# then build the new files -# :) -# -# Note: This script ban be further optimized using unix built-ins, -# however, since we are adding themes little by little, we can -# continue with a script like this since it wont affect performance -# as much as the full optimized script. -# -# Please, respect the syntax and line spacements. -# -# For https://github.com/FirefoxCSS-Store/FirefoxCSS-Store.github.io - -# -------------------------------Variables------------------------------------ - -# This get the origin dir of the script, this is easier if -# something goes wrong -O="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )" - -# Path to get the new themes (notice that this is local) -path="../themes.json" - -# path to put all the new image themes -pathout="images/themes" - -# path to change the new dirs in $path -pathoutbuild="assets/img/themes/" - -#--------------------------------Scripts-------------------------------------- - -# parse all the links of the new themes to a file called links -grep '\"image\":' $O/$path | grep -o '"http.*' | sed -r 's/"|,$//gm' > $O/links - -# limit of new themes urls to loop -limit="$(wc -l $O/links | awk '{ print $1 }')" - - - -# loop through each url in the file -for (( c=1; c<=$limit; c++ )); do - - # set line and get image url - img="$(sed -n $c\p $O/links)" - - # create temp dir to download and get name - mkdir "$O/temp"; cd "$O/temp" - - # download - wget "$img" - - # get filename && new image name - imgname="$(ls | sed -n 1p)" - newimage="$(echo "${RANDOM}${imgname}" | sed -r 's_(\?\w+=.*)__gm')" - - # mv file to pathout with the new name - mv "$O/temp/$imgname" "$O/../$pathout/$newimage" - - # remove temp folder - cd "$O/.."; rm -rf "$O/temp" - - # replace string in file - sed -i "s~${img}~$pathoutbuild/${newimage%.*}.webp~g" "$O/$path" - -done - - - -# delete temporary files -rm -rf "$O/links" From 59b7407702a68c47bed33d7b233725a5b4ff95f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20F=2E=20=28BeyondMagic/koetemagie=29?= Date: Fri, 11 Oct 2024 04:51:32 -0300 Subject: [PATCH 20/23] feat(sorting): replace trigger with menu --- dev/js/main.js | 50 +++++++++++----------------------- dev/pug/includes/header.pug | 8 ++++-- dev/scss/base/_typography.scss | 2 +- 3 files changed, 23 insertions(+), 37 deletions(-) diff --git a/dev/js/main.js b/dev/js/main.js index 78717ea..efcb559 100644 --- a/dev/js/main.js +++ b/dev/js/main.js @@ -86,11 +86,12 @@ function createLightbox (id) { search.addEventListener('keydown', e => { if (e.key === "Enter") - sort(search.value) + sort(localStorage.sort, search.value) }) - document.getElementById('searchButton').addEventListener('click', () => (false)) + const search_button = /** @type {HTMLInputElement} */ (document.getElementById('searchButton')) + search_button.addEventListener('click', () => sort(localStorage.sort, search.value)) /* Load Content * ============ @@ -104,47 +105,28 @@ function createLightbox (id) { localStorage.sort = 'latest' /* - * Make the sort icon a button. + * Add event to sort when an option is chosen.. */ - const sort_trigger = /** @type {HTMLElement} */ (document.getElementById('js-sortSwitcher')) - sort_trigger.addEventListener('click', () => toggle_sorting()) - sort() + const sort_menu = /** @type {HTMLSelectElement} */ (document.getElementById('js-sort-menu')) + sort_menu.addEventListener('change', () => { + const name = /** @type {string} */ (sort_menu.selectedOptions[0].getAttribute('name')) + sort(name) + }) - /** - * Toggle the sorting type of the themes. - **/ - function toggle_sorting () { - - switch (localStorage.sort) - { - case 'latest': - localStorage.sort = 'updated' - break - case 'updated': - localStorage.sort = 'stars' - break - case 'stars': - localStorage.sort = 'random' - break; - case 'random': - localStorage.sort = 'oldest' - break - default: - localStorage.sort = 'latest' - } - - return sort() - - } + sort(localStorage.sort) + const current_option = sort_menu.options.namedItem(localStorage.sort) + if (current_option) + current_option.selected = true /** * Toggle the sorting type of the themes. * + * @param {string} kind How to sort the themes. * @param {string=} filter Term to filter the themes. **/ - function sort (filter) { + function sort (kind, filter) { - sort_trigger.title = `"${localStorage.sort}"` + localStorage.sort = kind // Remove all themes cards from the page. const cards_container = document.getElementById('themes_container') diff --git a/dev/pug/includes/header.pug b/dev/pug/includes/header.pug index 5e409cb..a4579c3 100644 --- a/dev/pug/includes/header.pug +++ b/dev/pug/includes/header.pug @@ -5,8 +5,12 @@ header#main_header a(href='index.html') Theme List a#js-themeSwitcher(href='#') i.fas.fa-moon - a#js-sortSwitcher(href='#') - i.fas.fa-sort + select#js-sort-menu + option(name='updated') Updated + option(name='stars') Stars + option(name='latest') Latest + option(name='oldest') Oldest + option(name='random') Random div.searchform(method='get') .inputgroup input.searchinput#searchInput(type='text', placeholder='Search') diff --git a/dev/scss/base/_typography.scss b/dev/scss/base/_typography.scss index 89c44e9..b0fb6d9 100644 --- a/dev/scss/base/_typography.scss +++ b/dev/scss/base/_typography.scss @@ -13,7 +13,6 @@ body { } - a { text-decoration: none; @@ -25,6 +24,7 @@ a { &:hover { color: var(--linkc-hover) } &:focus { outline: var(--focus-thickness) solid var(--focus-colour); } + } From 5940705f5f4e35275b830c0ad963fc0ea9133559 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20F=2E=20=28BeyondMagic/koetemagie=29?= Date: Fri, 11 Oct 2024 04:51:55 -0300 Subject: [PATCH 21/23] fix(disclaimer): do not show theme filter buttons --- dev/pug/disclaimer.pug | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/dev/pug/disclaimer.pug b/dev/pug/disclaimer.pug index 77299db..aeb66e9 100644 --- a/dev/pug/disclaimer.pug +++ b/dev/pug/disclaimer.pug @@ -1,5 +1,13 @@ extends layout/default +block header + header#main_header + h3.header-branding FirefoxCSS Store + + nav#main_nav + a(href='index.html') Theme List + a#js-themeSwitcher(href='#') + i.fas.fa-moon block content From d3ec814694fb15432d3aa1d051a8e08108d81f25 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20F=2E=20=28BeyondMagic/koetemagie=29?= Date: Fri, 11 Oct 2024 04:52:19 -0300 Subject: [PATCH 22/23] build(site): add menu for sorting and fix disclaimer page --- docs/assets/js/main.js | 48 ++++++++++++-------------------------- docs/assets/js/main.min.js | 2 +- docs/disclaimer.html | 9 +------ docs/index.html | 9 ++++++- 4 files changed, 25 insertions(+), 43 deletions(-) diff --git a/docs/assets/js/main.js b/docs/assets/js/main.js index 29afb31..da9f399 100644 --- a/docs/assets/js/main.js +++ b/docs/assets/js/main.js @@ -55,10 +55,11 @@ function createLightbox(id) { var search = /** @type {HTMLInputElement} */document.getElementById('searchInput'); search.addEventListener('keydown', function (e) { - if (e.key === "Enter") sort(search.value); + if (e.key === "Enter") sort(localStorage.sort, search.value); }); - document.getElementById('searchButton').addEventListener('click', function () { - return false; + var search_button = /** @type {HTMLInputElement} */document.getElementById('searchButton'); + search_button.addEventListener('click', function () { + return sort(localStorage.sort, search.value); }); /* Load Content @@ -72,44 +73,25 @@ function createLightbox(id) { if (!localStorage.sort) localStorage.sort = 'latest'; /* - * Make the sort icon a button. + * Add event to sort when an option is chosen.. */ - var sort_trigger = /** @type {HTMLElement} */document.getElementById('js-sortSwitcher'); - sort_trigger.addEventListener('click', function () { - return toggle_sorting(); + var sort_menu = /** @type {HTMLSelectElement} */document.getElementById('js-sort-menu'); + sort_menu.addEventListener('change', function () { + var name = /** @type {string} */sort_menu.selectedOptions[0].getAttribute('name'); + sort(name); }); - sort(); - - /** - * Toggle the sorting type of the themes. - **/ - function toggle_sorting() { - switch (localStorage.sort) { - case 'latest': - localStorage.sort = 'updated'; - break; - case 'updated': - localStorage.sort = 'stars'; - break; - case 'stars': - localStorage.sort = 'random'; - break; - case 'random': - localStorage.sort = 'oldest'; - break; - default: - localStorage.sort = 'latest'; - } - return sort(); - } + sort(localStorage.sort); + var current_option = sort_menu.options.namedItem(localStorage.sort); + if (current_option) current_option.selected = true; /** * Toggle the sorting type of the themes. * + * @param {string} kind How to sort the themes. * @param {string=} filter Term to filter the themes. **/ - function sort(filter) { - sort_trigger.title = "\"".concat(localStorage.sort, "\""); + function sort(kind, filter) { + localStorage.sort = kind; // Remove all themes cards from the page. var cards_container = document.getElementById('themes_container'); diff --git a/docs/assets/js/main.min.js b/docs/assets/js/main.min.js index bf5a98a..26e0cae 100644 --- a/docs/assets/js/main.min.js +++ b/docs/assets/js/main.min.js @@ -1 +1 @@ -"use strict";function _slicedToArray(t,e){return _arrayWithHoles(t)||_iterableToArrayLimit(t,e)||_unsupportedIterableToArray(t,e)||_nonIterableRest()}function _nonIterableRest(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function _iterableToArrayLimit(t,e){var r=null==t?null:"undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(null!=r){var n,o,a,i,c=[],l=!0,s=!1;try{if(a=(r=r.call(t)).next,0===e){if(Object(r)!==r)return;l=!1}else for(;!(l=(n=a.call(r)).done)&&(c.push(n.value),c.length!==e);l=!0);}catch(t){s=!0,o=t}finally{try{if(!l&&null!=r.return&&(i=r.return(),Object(i)!==i))return}finally{if(s)throw o}}return c}}function _arrayWithHoles(t){if(Array.isArray(t))return t}function _createForOfIteratorHelper(t,e){var r="undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(!r){if(Array.isArray(t)||(r=_unsupportedIterableToArray(t))||e&&t&&"number"==typeof t.length){r&&(t=r);var n=0,o=function(){};return{s:o,n:function(){return n>=t.length?{done:!0}:{done:!1,value:t[n++]}},e:function(t){throw t},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a,i=!0,c=!1;return{s:function(){r=r.call(t)},n:function(){var t=r.next();return i=t.done,t},e:function(t){c=!0,a=t},f:function(){try{i||null==r.return||r.return()}finally{if(c)throw a}}}}function _unsupportedIterableToArray(t,e){if(t){if("string"==typeof t)return _arrayLikeToArray(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?_arrayLikeToArray(t,e):void 0}}function _arrayLikeToArray(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r\n
\n

').concat(this._title,'

\n \n \n \n
\n \n
\n \n Download\n
\n \n ');t.insertAdjacentHTML("beforeend",e)}}])}(),removeLightbox=function(){return document.body.getElementsById("lightbox").remove()};function createLightbox(t){var e=document.getElementById("theme-".concat(t)),r=e.querySelector("h3"),n=e.querySelector("img"),o='\n \n ');e.insertAdjacentHTML("afterend",o)}!function(){var t=document.getElementById("searchInput");t.addEventListener("keydown",function(e){"Enter"===e.key&&r(t.value)}),document.getElementById("searchButton").addEventListener("click",function(){return!1}),localStorage.sort||(localStorage.sort="latest");var e=document.getElementById("js-sortSwitcher");function r(r){e.title='"'.concat(localStorage.sort,'"');var o=document.getElementById("themes_container");o&&(o.innerHTML=""),fetch("themes.json").then(function(t){return t.json()}).then(function(e){if(e=Object.entries(e),r){e=e.filter(function(e){return r="".concat(e[1].title,", ").concat(e[1].tags),n=t.value,r.toLowerCase().indexOf(n.toLowerCase())>-1;var r,n})}switch(localStorage.sort){case"latest":e.reverse();break;case"updated":e.sort(function(t,e){return e[1].pushed_at.localeCompare(t[1].pushed_at)});break;case"stars":e.sort(function(t,e){return e[1].stargazers_count-t[1].stargazers_count});break;case"random":for(var o=e.length-1;o>0;o--){var a=Math.floor(Math.random()*(o+1)),i=[e[a],e[o]];e[o]=i[0],e[a]=i[1]}}var c,l=_createForOfIteratorHelper(e);try{for(l.s();!(c=l.n()).done;){var s=_slicedToArray(c.value,2),u=s[0],d=s[1];new Card(d,u).render(n)}}catch(t){l.e(t)}finally{l.f()}})}e.addEventListener("click",function(){return function(){switch(localStorage.sort){case"latest":localStorage.sort="updated";break;case"updated":localStorage.sort="stars";break;case"stars":localStorage.sort="random";break;case"random":localStorage.sort="oldest";break;default:localStorage.sort="latest"}return r()}()}),r();var n=document.getElementById("themes_container"),o=window.matchMedia("(prefers-color-scheme: dark)").matches?"night":"day",a=document.getElementById("js-themeSwitcher"),i=a.querySelector("i");localStorage.theme||(localStorage.theme="day"===o?"day":"night"),"night"===localStorage.theme?(i.classList.toggle("fa-sun"),i.classList.toggle("fa-moon"),document.documentElement.classList.add("nightmode")):document.documentElement.classList.add("daymode"),a.addEventListener("click",function(){return document.documentElement.classList.toggle("nightmode"),document.documentElement.classList.toggle("daymode"),i.classList.toggle("fa-sun"),i.classList.toggle("fa-moon"),void("night"===localStorage.theme?localStorage.theme="day":localStorage.theme="night")})}(); \ No newline at end of file +"use strict";function _slicedToArray(e,t){return _arrayWithHoles(e)||_iterableToArrayLimit(e,t)||_unsupportedIterableToArray(e,t)||_nonIterableRest()}function _nonIterableRest(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function _iterableToArrayLimit(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,a,i,c=[],l=!0,s=!1;try{if(a=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=a.call(n)).done)&&(c.push(r.value),c.length!==t);l=!0);}catch(e){s=!0,o=e}finally{try{if(!l&&null!=n.return&&(i=n.return(),Object(i)!==i))return}finally{if(s)throw o}}return c}}function _arrayWithHoles(e){if(Array.isArray(e))return e}function _createForOfIteratorHelper(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=_unsupportedIterableToArray(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a,i=!0,c=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return i=e.done,e},e:function(e){c=!0,a=e},f:function(){try{i||null==n.return||n.return()}finally{if(c)throw a}}}}function _unsupportedIterableToArray(e,t){if(e){if("string"==typeof e)return _arrayLikeToArray(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?_arrayLikeToArray(e,t):void 0}}function _arrayLikeToArray(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n\n
\n

').concat(this._title,'

\n \n \n \n
\n \n
\n \n Download\n
\n \n ');e.insertAdjacentHTML("beforeend",t)}}])}(),removeLightbox=function(){return document.body.getElementsById("lightbox").remove()};function createLightbox(e){var t=document.getElementById("theme-".concat(e)),n=t.querySelector("h3"),r=t.querySelector("img"),o='\n \n ');t.insertAdjacentHTML("afterend",o)}!function(){var e=document.getElementById("searchInput");e.addEventListener("keydown",function(t){"Enter"===t.key&&r(localStorage.sort,e.value)}),document.getElementById("searchButton").addEventListener("click",function(){return r(localStorage.sort,e.value)}),localStorage.sort||(localStorage.sort="latest");var t=document.getElementById("js-sort-menu");t.addEventListener("change",function(){r(t.selectedOptions[0].getAttribute("name"))}),r(localStorage.sort);var n=t.options.namedItem(localStorage.sort);function r(t,n){localStorage.sort=t;var r=document.getElementById("themes_container");r&&(r.innerHTML=""),fetch("themes.json").then(function(e){return e.json()}).then(function(t){if(t=Object.entries(t),n){t=t.filter(function(t){return n="".concat(t[1].title,", ").concat(t[1].tags),r=e.value,n.toLowerCase().indexOf(r.toLowerCase())>-1;var n,r})}switch(localStorage.sort){case"latest":t.reverse();break;case"updated":t.sort(function(e,t){return t[1].pushed_at.localeCompare(e[1].pushed_at)});break;case"stars":t.sort(function(e,t){return t[1].stargazers_count-e[1].stargazers_count});break;case"random":for(var r=t.length-1;r>0;r--){var a=Math.floor(Math.random()*(r+1)),i=[t[a],t[r]];t[r]=i[0],t[a]=i[1]}}var c,l=_createForOfIteratorHelper(t);try{for(l.s();!(c=l.n()).done;){var s=_slicedToArray(c.value,2),u=s[0],d=s[1];new Card(d,u).render(o)}}catch(e){l.e(e)}finally{l.f()}})}n&&(n.selected=!0);var o=document.getElementById("themes_container"),a=window.matchMedia("(prefers-color-scheme: dark)").matches?"night":"day",i=document.getElementById("js-themeSwitcher"),c=i.querySelector("i");localStorage.theme||(localStorage.theme="day"===a?"day":"night"),"night"===localStorage.theme?(c.classList.toggle("fa-sun"),c.classList.toggle("fa-moon"),document.documentElement.classList.add("nightmode")):document.documentElement.classList.add("daymode"),i.addEventListener("click",function(){return document.documentElement.classList.toggle("nightmode"),document.documentElement.classList.toggle("daymode"),c.classList.toggle("fa-sun"),c.classList.toggle("fa-moon"),void("night"===localStorage.theme?localStorage.theme="day":localStorage.theme="night")})}(); \ No newline at end of file diff --git a/docs/disclaimer.html b/docs/disclaimer.html index 211f911..803e7fa 100644 --- a/docs/disclaimer.html +++ b/docs/disclaimer.html @@ -12,14 +12,7 @@

FirefoxCSS Store

- +

Disclaimer

diff --git a/docs/index.html b/docs/index.html index ddea5c6..ced38d8 100644 --- a/docs/index.html +++ b/docs/index.html @@ -12,7 +12,14 @@

FirefoxCSS Store

-