Skip to content
Snippets Groups Projects
Commit f4dcbf61 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Merge branch 'dd_msg_reader_default_indexed_mode_colors' into 'master'

DDMsgReader: Added default color definitions for indexed reader mode in case they aren't specified in the theme .cfg file

See merge request !279
parents 2d0a9464 99c24683
No related branches found
No related tags found
2 merge requests!463MRC mods by Codefenix (2024-10-20),!279DDMsgReader: Added default color definitions for indexed reader mode in case they aren't specified in the theme .cfg file
...@@ -16194,7 +16194,7 @@ function getDefaultColors() ...@@ -16194,7 +16194,7 @@ function getDefaultColors()
msgListFromUserTimeColor: "\x01h\x01b", msgListFromUserTimeColor: "\x01h\x01b",
   
// Message list highlight colors // Message list highlight colors
msgListHighlightBkgColor: "\x01" + "4", // Background msgListHighlightBkgColor: "\x014", // Background
msgListMsgNumHighlightColor: "\x01h\x01y", msgListMsgNumHighlightColor: "\x01h\x01y",
msgListFromHighlightColor: "\x01h\x01c", msgListFromHighlightColor: "\x01h\x01c",
msgListToHighlightColor: "\x01h\x01c", msgListToHighlightColor: "\x01h\x01c",
...@@ -16204,7 +16204,7 @@ function getDefaultColors() ...@@ -16204,7 +16204,7 @@ function getDefaultColors()
msgListTimeHighlightColor: "\x01h\x01w", msgListTimeHighlightColor: "\x01h\x01w",
   
// Lightbar message list help line colors // Lightbar message list help line colors
lightbarMsgListHelpLineBkgColor: "\x01" + "7", // Background lightbarMsgListHelpLineBkgColor: "\x017", // Background
lightbarMsgListHelpLineGeneralColor: "\x01b", lightbarMsgListHelpLineGeneralColor: "\x01b",
lightbarMsgListHelpLineHotkeyColor: "\x01r", lightbarMsgListHelpLineHotkeyColor: "\x01r",
lightbarMsgListHelpLineParenColor: "\x01m", lightbarMsgListHelpLineParenColor: "\x01m",
...@@ -16236,14 +16236,14 @@ function getDefaultColors() ...@@ -16236,14 +16236,14 @@ function getDefaultColors()
areaChooserMsgAreaLatestDateColor: "\x01n\x01g", areaChooserMsgAreaLatestDateColor: "\x01n\x01g",
areaChooserMsgAreaLatestTimeColor: "\x01n\x01m", areaChooserMsgAreaLatestTimeColor: "\x01n\x01m",
// Highlighted colors (for lightbar mode) // Highlighted colors (for lightbar mode)
areaChooserMsgAreaBkgHighlightColor: "\x01" + "4", // Blue background areaChooserMsgAreaBkgHighlightColor: "\x014", // Blue background
areaChooserMsgAreaNumHighlightColor: "\x01w\x01h", areaChooserMsgAreaNumHighlightColor: "\x01w\x01h",
areaChooserMsgAreaDescHighlightColor: "\x01c", areaChooserMsgAreaDescHighlightColor: "\x01c",
areaChooserMsgAreaDateHighlightColor: "\x01w\x01h", areaChooserMsgAreaDateHighlightColor: "\x01w\x01h",
areaChooserMsgAreaTimeHighlightColor: "\x01w\x01h", areaChooserMsgAreaTimeHighlightColor: "\x01w\x01h",
areaChooserMsgAreaNumItemsHighlightColor: "\x01w\x01h", areaChooserMsgAreaNumItemsHighlightColor: "\x01w\x01h",
// Lightbar area chooser help line // Lightbar area chooser help line
lightbarAreaChooserHelpLineBkgColor: "\x01" + "7", // Background lightbarAreaChooserHelpLineBkgColor: "\x017", // Background
lightbarAreaChooserHelpLineGeneralColor: "\x01b", lightbarAreaChooserHelpLineGeneralColor: "\x01b",
lightbarAreaChooserHelpLineHotkeyColor: "\x01r", lightbarAreaChooserHelpLineHotkeyColor: "\x01r",
lightbarAreaChooserHelpLineParenColor: "\x01m", lightbarAreaChooserHelpLineParenColor: "\x01m",
...@@ -16256,7 +16256,7 @@ function getDefaultColors() ...@@ -16256,7 +16256,7 @@ function getDefaultColors()
// area in the enhanced reader mode before a prompt // area in the enhanced reader mode before a prompt
enhReaderPromptSepLineColor: "\x01n\x01h\x01g", enhReaderPromptSepLineColor: "\x01n\x01h\x01g",
// Colors for the enhanced reader help line // Colors for the enhanced reader help line
enhReaderHelpLineBkgColor: "\x01" + "7", enhReaderHelpLineBkgColor: "\x017",
enhReaderHelpLineGeneralColor: "\x01b", enhReaderHelpLineGeneralColor: "\x01b",
enhReaderHelpLineHotkeyColor: "\x01r", enhReaderHelpLineHotkeyColor: "\x01r",
enhReaderHelpLineParenColor: "\x01m", enhReaderHelpLineParenColor: "\x01m",
...@@ -16266,7 +16266,29 @@ function getDefaultColors() ...@@ -16266,7 +16266,29 @@ function getDefaultColors()
hdrLineValueColor: "\x01n\x01b\x01h", hdrLineValueColor: "\x01n\x01b\x01h",
   
// Selected message marker color // Selected message marker color
selectedMsgMarkColor: "\x01n\x01w\x01h" selectedMsgMarkColor: "\x01n\x01w\x01h",
// Colors for the indexed mode sub-board menu:
indexMenuDesc: "\x01n\x01w",
indexMenuTotalMsgs: "\x01n\x01w",
indexMenuNumNewMsgs: "\x01n\x01w",
indexMenuLastPostDate: "\x01b\x01h",
// Highlighted/selected:
indexMenuHighlightBkg: "\x014",
indexMenuDescHighlight: "\x01w\x01h",
indexMenuTotalMsgsHighlight: "\x01w\x01h",
indexMenuNumNewMsgsHighlight: "\x01w\x01h",
indexMenuLastPostDateHighlight: "\x01w\x01h",
// Colors for the indexed mode help line text:
// Background
lightbarIndexedModeHelpLineBkgColor: "\x017",
// Hotkey color
lightbarIndexedModeHelpLineHotkeyColor: "\x01r",
// General text
lightbarIndexedModeHelpLineGeneralColor: "\x01b",
// For ) separating the hotkeys from general text
lightbarIndexedModeHelpLineParenColor: "\x01m"
}; };
} }
   
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment