No description
Find a file
2025-10-06 17:10:07 +02:00
__pycache__ batman 2025-09-26 12:03:50 +02:00
.gitignore added ignore file 2025-09-26 14:54:22 +02:00
__init__.py batman 2025-09-26 12:03:50 +02:00
README.md docs 2025-09-26 12:14:35 +02:00
setup.py changed macintosh theme a bit 2025-10-06 17:10:07 +02:00

Themes repo for qutebrowser themes

Installation:

Just clone the repo into your qutebrowser directory, where you can then import it as a module:

git clone --depth=1 https://git.k4li.de/pika/qute-themes.git "${HOME}/.config/qutebrowser/themes"

Usage:

To setup a theme just import the cloned module to your config, and call the setup function:

This assumes the module is exacly cloned like in the cmd above

import themes

themes.setup(c, 'macintosh', True, False)

The setup function takes in a theme-name, and optionally 2 Booleans. They both configure the odd and even colors for Qutebrowser.

If the first one is True, then the tab-colors are the same for even and odd

If the second one is True, then the completion-colors are the same for even and odd

If you already have a themes folder, you can also clone this repo into that dir somewhere like:

git clone --depth=1 https://git.k4li.de/pika/qute-themes.git "${HOME}/.config/qutebrowser/themes/pika"

Then you have to call it a bit differently:

from themes import pika
pika.setup(c, 'kanagawa', True, False)

currently implemented themes:

  1. OneDark - Dark | as 'onedark'
  2. base16-macintosh | as 'macintosh'
  3. base16-kanagawa | as 'kanagawa'
  4. base16-ayu-dark | as 'ayu'