diff --git a/readme.md b/readme.md index 72ebacd2..28bd12d0 100644 --- a/readme.md +++ b/readme.md @@ -19,9 +19,11 @@ Below are examples of what can be done using this library. Using it in a simple | `padding=4`
`color="#551144"` | | | | ### Theme-pack Recoloring -In this example, my own [theme](https://github.com/NicklasVraa/NovaOS-nord-Theme) and [icon-pack](https://github.com/NicklasVraa/NovaOS-nord-Icons) have been recolored in brown/green-ish colors. This is available for download under releases. +In these examples, my own [theme](https://github.com/NicklasVraa/NovaOS-nord-Theme) and [icon-pack](https://github.com/NicklasVraa/NovaOS-nord-Icons) have been recolored for inspiration. These are available for download under releases. -![NovaOS-woodland](resources/packs/NovaOS-woodland.png) +| | | | +|:-:|:-:|:-:| +| ![NovaOS-nord](resources/packs/NovaOS-nord.png) Nord | ![NovaOS-woodland](resources/packs/NovaOS-woodland.png) Woodland | ![NovaOS-beach](resources/packs/NovaOS-beach.png) Beach |
More theme recoloring examples diff --git a/resources/packs/NovaOS-beach.png b/resources/packs/NovaOS-beach.png new file mode 100644 index 00000000..dc2eac80 Binary files /dev/null and b/resources/packs/NovaOS-beach.png differ diff --git a/resources/packs/NovaOS-nord.png b/resources/packs/NovaOS-nord.png new file mode 100644 index 00000000..e4d737e7 Binary files /dev/null and b/resources/packs/NovaOS-nord.png differ diff --git a/test.ipynb b/test.ipynb index 3dc678bc..4d7e8b8c 100644 --- a/test.ipynb +++ b/test.ipynb @@ -2,7 +2,7 @@ "cells": [ { "cell_type": "code", - "execution_count": null, + "execution_count": 1, "metadata": {}, "outputs": [], "source": [ @@ -14,31 +14,63 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 22, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "/home/nv/.themes/NovaOS-beach/index.theme\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "svg: 100%|██████████| 84/84 [00:00<00:00, 410.00it/s]\n", + "css: 100%|██████████| 26/26 [00:00<00:00, 82.01it/s]\n", + "png: 100%|██████████| 442/442 [00:08<00:00, 52.42it/s] \n" + ] + } + ], "source": [ "# Generate theme pack.\n", "utils.recolor(\n", " \"/opt/nova/theme/NovaOS-nord/\", # Source\n", " \"~/.themes\", # Destination\n", - " \"NovaOS-woodland\", # New name\n", - " utils.norm_hsl(22, 20, 48)\n", + " \"NovaOS-beach\", # New name\n", + " utils.norm_hsl(190, 35, 65)\n", ")" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 16, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "/home/nv/.icons/NovaOS-beach/index.theme\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "svg: 100%|██████████| 7974/7974 [00:01<00:00, 5217.52it/s]\n" + ] + } + ], "source": [ "# Generate icon pack.\n", "utils.recolor(\n", " \"/opt/nova/icons/NovaOS-nord\", # Source\n", " \"~/.icons\", # Destination\n", - " \"NovaOS-woodland\", # New name\n", - " utils.norm_hsl(118, 25, 55)\n", + " \"NovaOS-beach\", # New name\n", + " utils.norm_hsl(36, 65, 75)\n", ")" ] }, @@ -52,8 +84,8 @@ "utils.recolor(\n", " \"~/Downloads/NovaOS-nord-wallpapers\", # Source\n", " \"~/.wallpapers\", # Destination\n", - " \"My_wallpapers\", # New name\n", - " utils.norm_hsl(0, 48, 65)\n", + " \"beach_wallpapers\", # New name\n", + " utils.norm_hsl(187, 100, 60)\n", ")" ] }