diff --git a/colorschemes/verf.toml b/colorschemes/verf.toml
index 258b7d9..2c96eda 100644
--- a/colorschemes/verf.toml
+++ b/colorschemes/verf.toml
@@ -16,13 +16,13 @@ lightness = 0.70
chroma = 0.10
[bg]
-lightness = 0.30
-chroma = 0.10
+lightness = 0.32
+chroma = 0.04
[colors]
-bg = [ 0.15, 0.05, 280 ]
-fg = [ 0.70, 0.03, 280 ]
-grey = [ 0.70, 0.0, 280 ]
+bg = [ 0.24, 0.02, 284 ]
+fg = [ 0.84, 0.03, 77 ]
+grey = [ 0.70, 0.01, 284 ]
[themes.ui]
fg = "fg"
@@ -48,7 +48,7 @@ pmenu_fg_selected = { color = "fg", lighten_absolute = 0.1, saturate = 0.03 }
pmenu_bg_selected = { color = "bg", lighten_absolute = 0.25, saturate = 0.08 }
special = { color = "fg.purple", lighten_absolute = 0.05, saturate = 0.02 }
-nontext = { color = "grey", mix = ["bg", 0.15] }
+nontext = { color = "bg", lighten_absolute = 0.35, saturate = 0.01 }
[themes.syn]
string = "fg.green"
@@ -89,8 +89,6 @@ changed = "bg.yellow"
text = "bg"
[inverse]
-saturate = 0.01
-gamma = 0.80
-lighten_absolute = 0.05
+lighten_absolute = 0.17
[highlights]
diff --git a/media/verf-dark.svg b/media/verf-dark.svg
index 2430240..0dcdd8f 100644
--- a/media/verf-dark.svg
+++ b/media/verf-dark.svg
@@ -6,56 +6,56 @@
}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-1
-//! Calculate A+B.
-2
-//!
-3
-//! From: https://rosettacode.org/wiki/A+B
-4
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+1
+//! Calculate A+B.
+2
+//!
+3
+//! From: https://rosettacode.org/wiki/A+B
+4
use
std
::
-io
+io
;
-5
-6
+5
+6
fn
main
()
{
-7
+7
let
mut
-line
+line
=
String
::
new
();
-8
+8
io
::
stdin
@@ -64,62 +64,62 @@
(
&
mut
-line
+line
).
expect
(
"stdin"
);
-9
-10
+9
+10
let
mut
-i
+i
:
i64
=
0
;
-11
+11
for
-word
+word
in
-line
+line
.
split_whitespace
()
{
-12
-i
+12
+i
+=
-word
-13
+word
+13
.
parse
::<
i64
>()
-14
+14
.
expect
(
"interpret input as numbers"
);
-15
+15
}
-16
+16
println!
(
"{}"
,
-i
+i
);
-17
+17
}
-~
-./hi-nvim-rs-web/code-examples/rust.rs 14,51 All
+~
+./hi-nvim-rs-web/code-examples/rust.rs 14,51 All
-- VISUAL LINE --
-3
+3
diff --git a/media/verf-light.svg b/media/verf-light.svg
index 4ee015c..c31761f 100644
--- a/media/verf-light.svg
+++ b/media/verf-light.svg
@@ -6,120 +6,120 @@
}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-1
-//! Calculate A+B.
-2
-//!
-3
-//! From: https://rosettacode.org/wiki/A+B
-4
-use
-std
-::
-io
-;
-5
-6
-fn
-main
-()
-{
-7
-let
-mut
-line
-=
-String
-::
-new
-();
-8
-io
-::
-stdin
-().
-read_line
-(
-&
-mut
-line
-).
-expect
-(
-"stdin"
-);
-9
-10
-let
-mut
-i
-:
-i64
-=
-0
-;
-11
-for
-word
-in
-line
-.
-split_whitespace
-()
-{
-12
-i
-+=
-word
-13
-.
-parse
-::<
-i64
->()
-14
-.
-expect
-(
-"interpret input as numbers"
-);
-15
-}
-16
-println!
-(
-"{}"
-,
-i
-);
-17
-}
-~
-./hi-nvim-rs-web/code-examples/rust.rs 14,51 All
--- VISUAL LINE --
-3
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+1
+//! Calculate A+B.
+2
+//!
+3
+//! From: https://rosettacode.org/wiki/A+B
+4
+use
+std
+::
+io
+;
+5
+6
+fn
+main
+()
+{
+7
+let
+mut
+line
+=
+String
+::
+new
+();
+8
+io
+::
+stdin
+().
+read_line
+(
+&
+mut
+line
+).
+expect
+(
+"stdin"
+);
+9
+10
+let
+mut
+i
+:
+i64
+=
+0
+;
+11
+for
+word
+in
+line
+.
+split_whitespace
+()
+{
+12
+i
++=
+word
+13
+.
+parse
+::<
+i64
+>()
+14
+.
+expect
+(
+"interpret input as numbers"
+);
+15
+}
+16
+println!
+(
+"{}"
+,
+i
+);
+17
+}
+~
+./hi-nvim-rs-web/code-examples/rust.rs 14,51 All
+-- VISUAL LINE --
+3