3 KiB
Stylix
This module wraps stylix, a theming framework for NixOS, Home Manager, nix-darwin, and Nix-on-Droid.
View the synix Home Manager module on Forgejo.
References
Usage
Add stylix to your flake inputs:
inputs = {
stylix.url = "github:nix-community/stylix";
stylix.inputs.nixpkgs.follows = "nixpkgs";
};
For example, in your home configuration, set:
imports = [ inputs.synix.homeModules.stylix ];
stylix = {
enable = true;
scheme = "SCHEME";
};
Replace SCHEME with the name of your scheme. Available schemes are listed as validSchemes in our stylix module.
Create a scheme
You can create your own scheme in schemes/<scheme>.yaml. To make it available via stylix.scheme, you need to add it to validSchemes and customSchemes in the module's default.nix. Make sure that the resulting scheme name is a valid colorscheme in nixvim.
It is recommended to set colors according to their purpose / name. This means that base00 should always be a rather dark color for the background and base08 a reddish color.
# <scheme>.yaml
system: "base16"
name: "SCHEME"
author: "AUTHOR"
description: "A dark theme inspired by the SCHEME color scheme."
slug: "SCHEME-theme"
variant: "dark"
palette:
base00: "080808" # background
base01: "323437" # alternate background
base02: "9e9e9e" # selection background
base03: "bdbdbd" # comments
base04: "b2ceee" # alternate text
base05: "c6c6c6" # default text
base06: "e4e4e4" # light foreground
base07: "eeeeee" # light background
base08: "ff5454" # error / red
base09: "cf87e8" # urgent / orange
base0A: "8cc85f" # warning / yellow
base0B: "e3c78a" # green
base0C: "79dac8" # cyan
base0D: "80a0ff" # blue
base0E: "36c692" # magenta
base0F: "74b2ff" # brown
Refer to Stylix's style guide for more information on where and how these colors will be used.
You can preview your color schemes with the base16-viewer (Disable your dark reader) or print-colors - a Python script to view color schemes in the terminal:
print-colors PATH/TO/colors.yaml
Wallpaper
You can set a wallpaper with:
stylix.image = ./path/to/wallpaper.png;
This can be any image as a PNG file. You might want to take a look at some Nix themed wallpapers or nix-wallpaper to create your own wallpaper with the Nix logo and custom colors.
Or create a solid color image with:
convert -size 3840x2160 "xc:#080808" wallpaper.png