I find the default highlighting for selecting text far too pale
To change what Nisus calls "Active selection", go to Preferences > Colors > Selection > Active selection > Active selection color
I like coloured strike-through to make the effect more visible. How do I change the settings
You could create a character style with your preferred settings, or use a macro for this. In both cases you would want to use a keyboard shortcut because this is an action you will probably frequently perform.
You seem to be new to Nisus, so I will give a detailed step-by-step instruction below.
The first option (character style):
1. Select some text
2. Format > Strikethrough > Single. The selected text has now default black strikethrough line
3. Choose Format > Strikethrough > Show Strikethrough Colors
4. Apply your color to the selection
5. Now create a new Character Style
based on the selection: Format > Character Style > New Character Style Based on Selection
6. Assign a keyboard shortcut to the new character style, either via the shortcut field in the Style Sheet or Preferences > Menu Keys > Format > Character Style > [name of your new character style]
The second option
(1) Install one or both of the following macros.
(2) Assign them keyboard shortcuts via Preferences > Menu Keys.
I use Com d for "strikethrough", Com dr for "strikethrough with red", and Com db for "strikethrough with blue."
---------------------------------------------
# Strikethrough with
RED color
$red = Color.red
Set Strikethrough 1
# 1 = single line strike, 2 = double line strike, 3 = thick, single line strike, 4 = thick, double line strike, 5 = dotted line strike
Set Strikethrough Color $red
-----------------------------------------------
# Strikethrough with
BLUE color
$blue = Color.blue
Set Strikethrough 1
Set Strikethrough Color $blue