summaryrefslogtreecommitdiffstats
path: root/.config/vimb/style.css
diff options
context:
space:
mode:
authorjoe <rbo@gmx.us>2025-09-30 17:54:44 +0200
committerjoe <rbo@gmx.us>2025-09-30 17:54:44 +0200
commit9ce4f10eeda968206bdf591b0a64a95fa41f1411 (patch)
tree668743746310033f7ebb3371c5397b2e3c7612f9 /.config/vimb/style.css
parentup (diff)
downloaddotfiles-bsd-9ce4f10eeda968206bdf591b0a64a95fa41f1411.tar.gz
dotfiles-bsd-9ce4f10eeda968206bdf591b0a64a95fa41f1411.tar.bz2
dotfiles-bsd-9ce4f10eeda968206bdf591b0a64a95fa41f1411.tar.xz
dotfiles-bsd-9ce4f10eeda968206bdf591b0a64a95fa41f1411.tar.zst
dotfiles-bsd-9ce4f10eeda968206bdf591b0a64a95fa41f1411.zip
up
Diffstat (limited to '')
-rw-r--r--.config/vimb/style.css55
1 files changed, 55 insertions, 0 deletions
diff --git a/.config/vimb/style.css b/.config/vimb/style.css
new file mode 100644
index 0000000..4aa6214
--- /dev/null
+++ b/.config/vimb/style.css
@@ -0,0 +1,55 @@
+body::-webkit-scrollbar {
+ display: none;
+}
+
+*,div,pre,textarea,body,input,td,tr,p {
+ background-color: #1d2021 !important;
+ background-image: none !important;
+ color: #ebdbb2 !important;
+}
+h1,h2,h3,h4 {
+ background-color: #1d2021 !important;
+ color: #ebdbb2 !important;
+}
+a {
+ color: #458588 !important;
+}
+a:hover,a:focus {
+ color: #458588 !important;
+}
+a:visited {
+ color: #b16286 !important;
+}
+/* img {
+ opacity: .5;
+}
+img:hover {
+ opacity: 1;
+} */
+
+/* Hint mode color styling
+ * Color scheme: Base16 Eighties (https://github.com/chriskempson/base16)
+ *
+ * The precedence of the user style is lower than that of the website so you
+ * have to mark your style definition to have higher priority.
+ */
+span[vimbhint^='label'] {
+ background-color: #f2f0ec !important;
+ border: 1px solid #2d2d2d !important;
+ color: #2d2d2d !important;
+ font: bold 10pt monospace !important;
+ opacity: 1 !important;
+ padding: .1em .4em !important;
+ text-transform: uppercase !important;
+}
+span[vimbhint='label focus'] {
+ font: bold 13pt monospace !important;
+}
+*[vimbhint^='hint'] {
+ background-color: #ffcc66 !important;
+ color: #2d2d2d !important;
+}
+*[vimbhint='hint focus'] {
+ background-color: #6699cc !important;
+ color: #2d2d2d !important;
+}