From ec45e894e7e3fdb1979794ff293b40f71e336ae3 Mon Sep 17 00:00:00 2001
From: archseer
Date: Tue, 7 Sep 2021 04:06:19 +0000
Subject: [PATCH] deploy: fd36fbdebfa6508699979dc426725cbbc2dbe295
---
404.html | 10 +-
configuration.html | 20 ++-
css/general.css | 13 ++
css/variables.css | 24 ++--
from-vim.html | 11 +-
highlight.css | 101 +++++---------
hooks.html | 10 +-
index.html | 13 +-
install.html | 13 +-
keymap.html | 93 ++++++-------
print.html | 332 +++++++++++++++++++++++++++++----------------
remapping.html | 10 +-
searchindex.js | 2 +-
searchindex.json | 2 +-
themes.html | 235 +++++++++++++++++++++-----------
usage.html | 10 +-
16 files changed, 539 insertions(+), 360 deletions(-)
diff --git a/404.html b/404.html
index eb4830096..289145113 100644
--- a/404.html
+++ b/404.html
@@ -1,5 +1,5 @@
-
+
@@ -40,7 +40,7 @@
@@ -66,7 +66,7 @@
if (theme === null || theme === undefined) { theme = default_theme; }
var html = document.querySelector('html');
html.classList.remove('no-js')
- html.classList.remove('light')
+ html.classList.remove('colibri')
html.classList.add(theme);
html.classList.add('js');
@@ -103,12 +103,12 @@
+See also Kakoune's Migrating from Vim.
TODO: Mention texobjects, surround, registers
diff --git a/highlight.css b/highlight.css
index c23432272..8dce7d65f 100644
--- a/highlight.css
+++ b/highlight.css
@@ -1,83 +1,56 @@
-/*
- * An increased contrast highlighting scheme loosely based on the
- * "Base16 Atelier Dune Light" theme by Bram de Haan
- * (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/dune)
- * Original Base16 color scheme by Chris Kempson
- * (https://github.com/chriskempson/base16)
- */
-
-/* Comment */
+pre code.hljs {
+ display:block;
+ overflow-x:auto;
+ padding:1em
+}
+code.hljs {
+ padding:3px 5px
+}
+.hljs {
+ background:#2f1e2e;
+ color:#a39e9b
+}
.hljs-comment,
.hljs-quote {
- color: #575757;
+ color:#8d8687
}
-
-/* Red */
-.hljs-variable,
-.hljs-template-variable,
-.hljs-attribute,
-.hljs-tag,
+.hljs-link,
+.hljs-meta,
.hljs-name,
.hljs-regexp,
-.hljs-link,
-.hljs-name,
+.hljs-selector-class,
.hljs-selector-id,
-.hljs-selector-class {
- color: #d70025;
+.hljs-tag,
+.hljs-template-variable,
+.hljs-variable {
+ color:#ef6155
}
-
-/* Orange */
-.hljs-number,
-.hljs-meta,
.hljs-built_in,
-.hljs-builtin-name,
+.hljs-deletion,
.hljs-literal,
-.hljs-type,
-.hljs-params {
- color: #b21e00;
+.hljs-number,
+.hljs-params,
+.hljs-type {
+ color:#f99b15
}
-
-/* Green */
+.hljs-attribute,
+.hljs-section,
+.hljs-title {
+ color:#fec418
+}
+.hljs-addition,
+.hljs-bullet,
.hljs-string,
-.hljs-symbol,
-.hljs-bullet {
- color: #008200;
+.hljs-symbol {
+ color:#48b685
}
-
-/* Blue */
-.hljs-title,
-.hljs-section {
- color: #0030f2;
-}
-
-/* Purple */
.hljs-keyword,
.hljs-selector-tag {
- color: #9d00ec;
+ color:#815ba4
}
-
-.hljs {
- display: block;
- overflow-x: auto;
- background: #f6f7f6;
- color: #000;
- padding: 0.5em;
-}
-
.hljs-emphasis {
- font-style: italic;
+ font-style:italic
}
-
.hljs-strong {
- font-weight: bold;
-}
-
-.hljs-addition {
- color: #22863a;
- background-color: #f0fff4;
-}
-
-.hljs-deletion {
- color: #b31d28;
- background-color: #ffeef0;
+ font-weight:700
}
diff --git a/hooks.html b/hooks.html
index c36310f83..c0cd96fc8 100644
--- a/hooks.html
+++ b/hooks.html
@@ -1,5 +1,5 @@
-
+
@@ -39,7 +39,7 @@
@@ -65,7 +65,7 @@
if (theme === null || theme === undefined) { theme = default_theme; }
var html = document.querySelector('html');
html.classList.remove('no-js')
- html.classList.remove('light')
+ html.classList.remove('colibri')
html.classList.add(theme);
html.classList.add('js');
@@ -102,12 +102,12 @@