From 55b9e38a7bee6dec42be835e91733d7f9cd8ccc4 Mon Sep 17 00:00:00 2001 From: Nicholas Noll Date: Sat, 6 Jun 2020 15:33:39 -0700 Subject: change cursor color based on text --- sys/cmd/term/config.h | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) (limited to 'sys/cmd/term/config.h') 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; -- cgit v1.2.1