summaryrefslogtreecommitdiff
path: root/colors
diff options
context:
space:
mode:
authorFrank LENORMAND <lenormf@gmail.com>2020-05-15 11:56:38 +0300
committerFrank LENORMAND <lenormf@gmail.com>2020-05-15 11:56:38 +0300
commit37706d7a95d3a58676fac6980671b7d4295e841e (patch)
treebb1a12cfa45b7f12f2a39368940259e5b2a89044 /colors
parentb6041e60ac513b8ea9fca8ef71d4aa5cca4c4f25 (diff)
colors: Retire the `bold` and `italic` faces
This commit removes declarations and mentions to the built-in `bold` and `italic` faces. While they could be a user-friendly way of customising how tokens are emphasised in Markdown documents (similarly to the `$LESS_TERMCAP_*` environment variables for `man` pagers), most other markup languages do not have the concept of "strong" and "emphasis" but refer directly to the font style/weight. The faces were also not even set by default to highlight as their names implied, so having markup language support scripts directly use the +b and +i face attributes is more consistent.
Diffstat (limited to 'colors')
-rw-r--r--colors/base16.kak2
-rw-r--r--colors/default.kak2
-rw-r--r--colors/desertex.kak2
-rw-r--r--colors/github.kak2
-rw-r--r--colors/greyscale.kak2
-rw-r--r--colors/gruvbox.kak2
-rw-r--r--colors/kaleidoscope-dark.kak2
-rw-r--r--colors/kaleidoscope-light.kak2
-rw-r--r--colors/lucius.kak2
-rw-r--r--colors/palenight.kak2
-rw-r--r--colors/plain.kak2
-rw-r--r--colors/red-phoenix.kak2
-rw-r--r--colors/reeder.kak2
-rw-r--r--colors/solarized-dark-termcolors.kak2
-rw-r--r--colors/solarized-dark.kak2
-rw-r--r--colors/solarized-light-termcolors.kak2
-rw-r--r--colors/solarized-light.kak2
-rw-r--r--colors/tomorrow-night.kak2
-rw-r--r--colors/zenburn.kak2
19 files changed, 0 insertions, 38 deletions
diff --git a/colors/base16.kak b/colors/base16.kak
index dd661ecf..607b170b 100644
--- a/colors/base16.kak
+++ b/colors/base16.kak
@@ -37,8 +37,6 @@ evaluate-commands %sh{
echo "
face global title blue
face global header ${cyan_light}
- face global bold ${orange_light}
- face global italic ${orange_dark}
face global mono ${green_dark}
face global block ${orange_dark}
face global link blue
diff --git a/colors/default.kak b/colors/default.kak
index 4ade7d8f..760b7ec0 100644
--- a/colors/default.kak
+++ b/colors/default.kak
@@ -18,8 +18,6 @@ face global builtin default+b
# For markup
face global title blue
face global header cyan
-face global bold red
-face global italic yellow
face global mono green
face global block magenta
face global link cyan
diff --git a/colors/desertex.kak b/colors/desertex.kak
index ae437281..f3ec765d 100644
--- a/colors/desertex.kak
+++ b/colors/desertex.kak
@@ -18,8 +18,6 @@ face global meta rgb:ee799f
# Markup
face global title blue
face global header cyan
-face global bold red
-face global italic yellow
face global mono green
face global block magenta
face global link cyan
diff --git a/colors/github.kak b/colors/github.kak
index 2ca2519b..01406223 100644
--- a/colors/github.kak
+++ b/colors/github.kak
@@ -21,8 +21,6 @@ face global builtin default+b
## markup
face global title blue
face global header cyan
-face global bold red
-face global italic yellow
face global mono green
face global block magenta
face global link cyan
diff --git a/colors/greyscale.kak b/colors/greyscale.kak
index 7faed391..e8da9053 100644
--- a/colors/greyscale.kak
+++ b/colors/greyscale.kak
@@ -37,8 +37,6 @@ evaluate-commands %sh{
set-face global link ${grey}+u
set-face global list Default
set-face global bullet +b
- set-face global bold +b
- set-face global italic +i
# Built-in faces
set-face global Default ${grey},${grey_light_2}
diff --git a/colors/gruvbox.kak b/colors/gruvbox.kak
index b2995b90..0d69abc5 100644
--- a/colors/gruvbox.kak
+++ b/colors/gruvbox.kak
@@ -41,8 +41,6 @@ evaluate-commands %sh{
# Markdown highlighting
face global title ${green}+b
face global header ${orange}
- face global bold ${fg}+b
- face global italic ${fg}+i
face global mono ${fg4}
face global block ${aqua}
face global link ${blue}+u
diff --git a/colors/kaleidoscope-dark.kak b/colors/kaleidoscope-dark.kak
index c078afe8..c209c507 100644
--- a/colors/kaleidoscope-dark.kak
+++ b/colors/kaleidoscope-dark.kak
@@ -95,8 +95,6 @@ evaluate-commands %sh{
set-face global link ${bright_cyan}+u
set-face global list Default
set-face global bullet +b
- set-face global bold +b
- set-face global italic +i
# Built-in faces
set-face global Default ${white},${black}
diff --git a/colors/kaleidoscope-light.kak b/colors/kaleidoscope-light.kak
index 68119f33..760eebee 100644
--- a/colors/kaleidoscope-light.kak
+++ b/colors/kaleidoscope-light.kak
@@ -95,8 +95,6 @@ evaluate-commands %sh{
set-face global link ${vibrant_blue}+u
set-face global list Default
set-face global bullet +b
- set-face global bold +b
- set-face global italic +i
# Built-in faces
set-face global Default ${black},${white}
diff --git a/colors/lucius.kak b/colors/lucius.kak
index c65aaabb..c227a17a 100644
--- a/colors/lucius.kak
+++ b/colors/lucius.kak
@@ -41,8 +41,6 @@ evaluate-commands %sh{
# and markup
face global title ${lucius_light_blue}
face global header ${lucius_light_green}
- face global bold ${lucius_blue}
- face global italic ${lucius_green}
face global mono ${lucius_light_green}
face global block ${lucius_light_blue}
face global link ${lucius_light_green}
diff --git a/colors/palenight.kak b/colors/palenight.kak
index e4aed532..b0ade4f5 100644
--- a/colors/palenight.kak
+++ b/colors/palenight.kak
@@ -44,8 +44,6 @@ evaluate-commands %sh{
# Markup
face global title $blue
face global header $cyan
- face global bold $red
- face global italic $yellow
face global mono $green
face global block $purple
face global link $cyan
diff --git a/colors/plain.kak b/colors/plain.kak
index 7c87c839..b364fa4e 100644
--- a/colors/plain.kak
+++ b/colors/plain.kak
@@ -17,8 +17,6 @@ face global builtin default
# For default
face global title default
face global header default
-face global bold default
-face global italic default
face global mono default
face global block default
face global link blue
diff --git a/colors/red-phoenix.kak b/colors/red-phoenix.kak
index c4bc0b55..52df293a 100644
--- a/colors/red-phoenix.kak
+++ b/colors/red-phoenix.kak
@@ -52,8 +52,6 @@ evaluate-commands %sh{
echo "
face global title blue
face global header ${orange1}
- face global bold ${orange2}
- face global italic ${orange3}
face global mono ${yellow1}
face global block ${tan1}
face global link blue
diff --git a/colors/reeder.kak b/colors/reeder.kak
index cc174290..7b004b4c 100644
--- a/colors/reeder.kak
+++ b/colors/reeder.kak
@@ -39,8 +39,6 @@ evaluate-commands %sh{
# and markup
face global title ${orange}+b
face global header ${orange}+b
- face global bold default+b
- face global italic default+i
face global mono ${green_light}
face global block ${green}
face global link ${orange}
diff --git a/colors/solarized-dark-termcolors.kak b/colors/solarized-dark-termcolors.kak
index 322c5f1c..487d2186 100644
--- a/colors/solarized-dark-termcolors.kak
+++ b/colors/solarized-dark-termcolors.kak
@@ -19,8 +19,6 @@ face global builtin default+b
# markup
face global title blue+b
face global header blue
-face global bold bright-blue+b
-face global italic bright-blue+i
face global mono bright-cyan
face global block cyan
face global link bright-cyan
diff --git a/colors/solarized-dark.kak b/colors/solarized-dark.kak
index 7672ca27..50eb97e2 100644
--- a/colors/solarized-dark.kak
+++ b/colors/solarized-dark.kak
@@ -37,8 +37,6 @@ evaluate-commands %sh{
# markup
face global title ${blue}+b
face global header ${blue}
- face global bold ${base0}+b
- face global italic ${base0}+i
face global mono ${base1}
face global block ${cyan}
face global link ${base1}
diff --git a/colors/solarized-light-termcolors.kak b/colors/solarized-light-termcolors.kak
index fdbec3ba..ac4afd8a 100644
--- a/colors/solarized-light-termcolors.kak
+++ b/colors/solarized-light-termcolors.kak
@@ -19,8 +19,6 @@ face global builtin default+b
# markup
face global title blue+b
face global header blue
-face global bold bright-green+b
-face global italic bright-green+i
face global mono bright-cyan
face global block cyan
face global link bright-green
diff --git a/colors/solarized-light.kak b/colors/solarized-light.kak
index 7128fc13..b199c55a 100644
--- a/colors/solarized-light.kak
+++ b/colors/solarized-light.kak
@@ -37,8 +37,6 @@ evaluate-commands %sh{
# markup
face global title ${blue}+b
face global header ${blue}
- face global bold ${base01}+b
- face global italic ${base01}+i
face global mono ${base1}
face global block ${cyan}
face global link ${base01}
diff --git a/colors/tomorrow-night.kak b/colors/tomorrow-night.kak
index 8b038afa..f12740a1 100644
--- a/colors/tomorrow-night.kak
+++ b/colors/tomorrow-night.kak
@@ -42,8 +42,6 @@ evaluate-commands %sh{
echo "
face global title blue
face global header ${aqua}
- face global bold ${yellow}
- face global italic ${orange}
face global mono ${green_dark}
face global block ${orange}
face global link blue
diff --git a/colors/zenburn.kak b/colors/zenburn.kak
index 57b4ba79..c79c7c48 100644
--- a/colors/zenburn.kak
+++ b/colors/zenburn.kak
@@ -48,8 +48,6 @@ evaluate-commands %sh{
# and markup
face global title ${zenkeyword}
face global header ${zenconstant}
- face global bold ${zenstorageClass}
- face global italic ${zenfunction}
face global mono ${zennumber}
face global block ${zenstatement}
face global link ${zenstring}