aboutsummaryrefslogtreecommitdiff
path: root/sys/cmd/term/config.h
diff options
context:
space:
mode:
authorNicholas Noll <nbnoll@eml.cc>2020-06-06 15:33:39 -0700
committerNicholas Noll <nbnoll@eml.cc>2020-06-06 15:33:39 -0700
commit55b9e38a7bee6dec42be835e91733d7f9cd8ccc4 (patch)
treeac7fa7375283add063f1173afacc1675ea644af7 /sys/cmd/term/config.h
parent254258b48b4ba761eae0a1563549e4f324564456 (diff)
change cursor color based on text
Diffstat (limited to 'sys/cmd/term/config.h')
-rw-r--r--sys/cmd/term/config.h38
1 files changed, 19 insertions, 19 deletions
diff --git a/sys/cmd/term/config.h b/sys/cmd/term/config.h
index e4b37ce..81b11b0 100644
--- a/sys/cmd/term/config.h
+++ b/sys/cmd/term/config.h
@@ -95,36 +95,36 @@ char *termname = "term-256color";
uint tabspaces = 4;
/* bg opacity */
-float alpha = 0.8;
+float alpha = 0.85;
/* Terminal colors (16 first used in escape sequence) */
static char *colorname[] = {
/* 8 normal colors */
- "black",
- "red3",
- "green3",
- "yellow3",
- "blue2",
- "magenta3",
- "cyan3",
- "gray90",
+ "#4e4e4e",
+ "#d68787",
+ "#5f865f",
+ "#d8af5f",
+ "#85add4",
+ "#d7afaf",
+ "#87afaf",
+ "#d0d0d0",
/* 8 bright colors */
- "gray50",
- "red",
- "green",
- "yellow",
- "#5c5cff",
- "magenta",
- "cyan",
- "white",
+ "#626262",
+ "#d75f87",
+ "#87af87",
+ "#ffd787",
+ "#add4fb",
+ "#ffafaf",
+ "#87d7d7",
+ "#e4e4e4",
[255] = 0,
/* more colors can be added after 255 to use with DefaultXX */
"#cccccc",
"#555555",
- "black",
+ "#3a3a3a",
};
@@ -156,7 +156,7 @@ static uint rows = 24;
/*
* Default colour and shape of the mouse cursor
*/
-static uint mouseshape = XC_xterm;
+static uint mouseshape = XC_left_ptr;
static uint mousefg = 7;
static uint mousebg = 0;