LIST OF COLORSCHEMES
This is a generated themes list so, errors or, typos may exist. They are highly unlikely that they will be fixed. It is recommended to visit the source if you want ful clarity.
Themes are fetched from nvim-colo.
#!/usr/bin/env python | |
import json | |
from pathlib import Path | |
from sys import stdout | |
from typing import Any, Callable, Dict, List | |
import gi | |
gi.require_version("Gtk", "3.0") |
(defwindow window :windowtype "normal" :wm-ignore true | |
:geometry (geometry :anchor "center" :y 100 :width "10%" :height "10%") | |
(key)) | |
(deflisten log "./key.sh") | |
(defwidget key[] "This prints nohing. '${log}'") | |
;; vim:filetype=yuck |
This is a generated themes list so, errors or, typos may exist. They are highly unlikely that they will be fixed. It is recommended to visit the source if you want ful clarity.
Themes are fetched from nvim-colo.
local present, feline = pcall(require, "feline") | |
if not present then return end | |
local theme = { | |
aqua = "#7AB0DF", | |
bg = "#1C212A", | |
blue = "#5FB0FC", | |
cyan = "#70C0BA", | |
darkred = "#FB7373", | |
fg = "#C7C7CA", |
/* compile command: cc -O3 --std=c11 -pedantic -Wall xkb.c -o xkb -lX11 -lXi */ | |
/* Headers and Defines {{{*/ | |
#include <X11/XKBlib.h> | |
#include <getopt.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
#define HELP_MESSAGE \ |
* { all: unset; } | |
label { | |
font-family: Phosphor, Dosis; | |
font-size: 4em; | |
} |
#include <stdio.h> | |
typedef struct node_t node_t; | |
struct node_t { | |
int data; | |
node_t* left; | |
node_t* right; | |
}; | |
int |
* { all: unset; } | |
tooltip { | |
font-size: 2em; | |
background-color: #7BB0DF; | |
color: #24292E; | |
} | |
calendar { | |
background: #0C0F12; |
ZDOTDIR="$HOME" | |
[ -f "$HOME/.cargo/env" ] && source "$HOME/.cargo/env" | |
# Colors | |
# black | |
foreground='#d4d4d5' | |
background='#101317' | |
color0='#171c21' |
box box { | |
background-image: url("https://runt-of-the-web.com/wordpress/wp-content/uploads/2013/05/shibe-meme-blazed.jpg"); | |
border-radius: 20%; | |
color: red; | |
font-size: 30; | |
font-weight: bolder; | |
background-repeat: no-repeat; | |
} | |
// vim:ft=scss |