Hi @cheshiredave,
I wanted to followup on this after seeing it in our issue tracker. The color scheme we use is called Solarized which has remained a popular IDE/text editor color scheme for many years. While we don’t have customizable color schemes as a first class feature, there is a way to customize the editor colors with custom CSS. Because there are 16 colors in the palette, you could use some themes of base16 as inspiration.
- Enable Dev ToolKit from Preferences (and click save to keep that enabled)
- Open Dev Toolkit from the bar icon and switch to the Custom UI CSS tab
- Copy / Paste the code below. These are the values for Solarized Dark, so if you’re using the dark UI theme nothing will change
- Experiment with updating the hex code values. A quick way to increase contrast would be swapping the values of
--c-cm-base-03 and --c-cm-base-02
:root {
--c-cm-base-03: #002b36;
--c-cm-base-02: #073642;
--c-cm-base-01: #586e75;
--c-cm-base-00: #657b83;
--c-cm-base-0: #839496;
--c-cm-base-1: #93a1a1;
--c-cm-base-2: #eee8d5;
--c-cm-base-3: #fdf6e3;
--c-cm-yellow: #b58900;
--c-cm-orange: #cb4b16;
--c-cm-red: #dc322f;
--c-cm-magenta: #d33682;
--c-cm-violet: #6c71c4;
--c-cm-blue: #268bd2;
--c-cm-cyan: #2aa198;
--c-cm-green: #859900;
}
Please understand that Custom UI CSS is an advanced feature and we can’t officially support customizations to Cornerstone.
Hopefully this helps give you a good starting point to get those colors updated!