mirror of
https://github.com/NotAShelf/Basix.git
synced 2024-12-28 22:12:24 +00:00
Compare commits
No commits in common. "dabb8c4d8e61e5c7c6af9e2c42f4aaa159b663aa" and "e09a90124dd7e7376359769962ab43f2aee63631" have entirely different histories.
dabb8c4d8e
...
e09a90124d
3 changed files with 4 additions and 39 deletions
22
README.md
22
README.md
|
@ -7,16 +7,16 @@ one convenient library.
|
||||||
## How does it work?
|
## How does it work?
|
||||||
|
|
||||||
For some obscure reason[^1] all schemes provided by tinted-theming is in YAML
|
For some obscure reason[^1] all schemes provided by tinted-theming is in YAML
|
||||||
and under one unified repository. We convert each YAML scheme to JSON to ensure
|
under one unified repository. We convert each YAML scheme to JSON to ensure the
|
||||||
the schemes are in a format Nix can read, then read them and expose them under a
|
schemes are in a format Nix can read, then read them and expose them under a
|
||||||
flake output.
|
flake output.
|
||||||
|
|
||||||
## How do I use this?
|
## How do I use this?
|
||||||
|
|
||||||
Basix be used as a flake input, or imported from a tarball.
|
Basix be used as a flake input, or imported from a tarball.
|
||||||
|
|
||||||
To get a color scheme, import either `schemeData.base16` or `schemeData.base24`
|
To get a colorscheme, import either `schemeData.base16` or `schemeData.base24`
|
||||||
from the outputs from this flake to import the color schemes for yourself.
|
from the outputs from this flake to import the colorschemes for yourself.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
nix-repl> :p schemeData.base16.decaf
|
nix-repl> :p schemeData.base16.decaf
|
||||||
|
@ -46,20 +46,6 @@ nix-repl> :p schemeData.base16.decaf
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
## Why?
|
|
||||||
|
|
||||||
There are not many theming solutions for Nix. Those that already exist are
|
|
||||||
either too convoluted, or straight up bad in terms of code quality or/and
|
|
||||||
execution. This leads me to use (and recommend) home-baked theming modules for
|
|
||||||
in-home usage, but there was not a good Base16 solution on Nix. Basix aims to
|
|
||||||
solve this issue by providing you an auto-updated collection of Base16 and
|
|
||||||
Base24 color palettes. As opposed to traditional hacks needed to convert YAML to
|
|
||||||
JSON and then read it, you can simply consume attribute sets derived from JSON
|
|
||||||
schemes while Basix does the heavy lifting for you.
|
|
||||||
|
|
||||||
Basix might come in handy in scenarios you wish to theme individual applications
|
|
||||||
from a pre-defined color palette.
|
|
||||||
|
|
||||||
## Credits
|
## Credits
|
||||||
|
|
||||||
- [@Gerg-l](https://github.com/gerg-l) for the clinically insane import
|
- [@Gerg-l](https://github.com/gerg-l) for the clinically insane import
|
||||||
|
|
17
flake.lock
17
flake.lock
|
@ -1,21 +1,5 @@
|
||||||
{
|
{
|
||||||
"nodes": {
|
"nodes": {
|
||||||
"flake-compat": {
|
|
||||||
"flake": false,
|
|
||||||
"locked": {
|
|
||||||
"lastModified": 1696426674,
|
|
||||||
"narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=",
|
|
||||||
"owner": "edolstra",
|
|
||||||
"repo": "flake-compat",
|
|
||||||
"rev": "0f9255e01c2351cc7d116c072cb317785dd33b33",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"owner": "edolstra",
|
|
||||||
"repo": "flake-compat",
|
|
||||||
"type": "github"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"flake-parts": {
|
"flake-parts": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"nixpkgs-lib": "nixpkgs-lib"
|
"nixpkgs-lib": "nixpkgs-lib"
|
||||||
|
@ -64,7 +48,6 @@
|
||||||
},
|
},
|
||||||
"root": {
|
"root": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"flake-compat": "flake-compat",
|
|
||||||
"flake-parts": "flake-parts",
|
"flake-parts": "flake-parts",
|
||||||
"nixpkgs": "nixpkgs"
|
"nixpkgs": "nixpkgs"
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,10 +4,6 @@
|
||||||
inputs = {
|
inputs = {
|
||||||
flake-parts.url = "github:hercules-ci/flake-parts";
|
flake-parts.url = "github:hercules-ci/flake-parts";
|
||||||
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
||||||
flake-compat = {
|
|
||||||
url = "github:edolstra/flake-compat";
|
|
||||||
flake = false;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = inputs @ {
|
outputs = inputs @ {
|
||||||
|
|
Loading…
Reference in a new issue