mirror of
https://git.sr.ht/~neverness/design
synced 2025-06-24 19:08:51 +00:00
repository haves 2 branches: base16 and wallpapers
atelierCave.yaml | ||
atelierCaveLight.yaml | ||
atlas.yaml | ||
ayuDark.yaml | ||
ayuLight.yaml | ||
ayuMirage.yaml | ||
blueberry.yaml | ||
catppuccinDark.yaml | ||
catppuccinLight.yaml | ||
chalk.yaml | ||
chanivibes.yaml | ||
chinoMidnight.yaml | ||
chinoNight.yaml | ||
classic.yaml | ||
daoGray.yaml | ||
daoneBlack.yaml | ||
daonePaper.yaml | ||
dusky.yaml | ||
equilibrium.yaml | ||
evangelion.yaml | ||
flake.lock | ||
flake.nix | ||
foggy.yaml | ||
framer.yaml | ||
helios.yaml | ||
horizonDark.yaml | ||
horizonDarkMOD.yaml | ||
horizonLight.yaml | ||
horizonTerminalDark.yaml | ||
horizonTerminalLight.yaml | ||
jabuti.yaml | ||
kanagawa.yaml | ||
LICENSE | ||
morio.yaml | ||
mountain.yaml | ||
mutedColor.yaml | ||
neoGenesis.yaml | ||
nocturne.yaml | ||
nostromo.yaml | ||
oddworld.yaml | ||
oxocarbonDark.yaml | ||
oxocarbonLight.yaml | ||
papercolorDark.yaml | ||
papercolorLight.yaml | ||
paradise.yaml | ||
pasque.yaml | ||
piatto.yaml | ||
primerDark.yaml | ||
primerDimmed.yaml | ||
qualia.yaml | ||
README.md | ||
rebecca.yaml | ||
rosepine.yaml | ||
rosepineDawn.yaml | ||
rosepineMoon.yaml | ||
saga.yaml | ||
sakura.yaml | ||
solar.yaml | ||
solarnz.yaml | ||
standart.yaml | ||
tokyocityDark.yaml | ||
tokyonightDark.yaml | ||
twilight.yaml | ||
vesper.yaml | ||
vice.yaml | ||
wolf.yaml | ||
woodland.yaml | ||
z2e3r40o.yaml |
【 DESIGN 】
base16 themes selfmade/stolen etc.
- stylix
- base16.nix
- flavours
- previewer use without comments as (# something)
Cheatsheet
system: "base16"
name: "themeName"
author: "yourName"
variant: "dark" # dark/light
base00: "16292c" # Default Background (background)
base01: "3d4a50" # Lighter Background (status bars, line number)
base02: "646b73" # Selection Background
base03: "8c8d96" # Comments, Invisibles, Line Highlighting
base04: "b3aeb9" # Dark Foreground (status bars)
base05: "dacfdd" # Default Foreground, Caret, Delimiters, Operators
base06: "dfd6e2" # Light Foreground (Not often used)
base07: "e5dde7" # Light Background (Not often used)
base08: "a6609d" # Variables, XML Tags, Markup Link Text, Markup Lists, Diff Deleted
base09: "75797a" # Integers, Boolean, Constants, XML Attributes, Markup Link Url
base0A: "627d84" # Classes, Markup Bold, Search Text Background
base0B: "9e8056" # Strings, Inherited Class, Markup Code, Diff Inserted
base0C: "537f89" # Support, Regular Expressions, Escape Characters, Markup Quotes
base0D: "4e817e" # Functions, Methods, Attribute IDs, Headings
base0E: "578b8e" # Keywords, Storage, Selector, Markup Italic, Diff Changed
base0F: "827e9c" # Deprecated, Opening/Closing Embedded Language Tags
nixOS
{
inputs = {
...
stylix.url = "github:danth/stylix"; # stylix
design = {
url = "sourcehut:~neverness/design";
# optional
inputs = {
nixpkgs.follows = "nixpkgs";
flake-utils.follows = "flake-utils";
};
}; # designing repo
...
};
outputs = inputs: {
...
nixosConfigurations.nixos = lib.nixosSystem {
specialArgs = { inherit inputs; };
modules =
let
themeName = "horizon-dark";
in
[
{
stylix.base16Scheme = # ~./base16/*.yaml
inputs.design.paths.x86_64-linux."${themeName}";
}
];
};
...
};
}