Table of Contents

Class ThemeBase

Namespace
SharpConsoleUI.Themes
Assembly
SharpConsoleUI.dll

Abstract base for all themes: declares every ITheme member as a settable virtual property with neutral/transparent "blank canvas" defaults. Concrete themes derive from this and set the values they want; a member left unset is transparent/neutral, never a hidden inherited value.

public abstract class ThemeBase : ITheme
Inheritance
ThemeBase
Implements
Derived
Inherited Members
Extension Methods

Properties

ActiveBorderForegroundColor

Gets the foreground color for the border of active (focused) windows.

public virtual Color? ActiveBorderForegroundColor { get; set; }

Property Value

Color?

ActiveTitleForegroundColor

Gets the foreground color for the title text of active (focused) windows.

public virtual Color? ActiveTitleForegroundColor { get; set; }

Property Value

Color?

BarGraphBackgroundColor

Gets the background color for bar graph controls. Null means transparent.

public virtual Color? BarGraphBackgroundColor { get; set; }

Property Value

Color?

BottomBarBackgroundColor

Gets the background color for the bottom status bar of the console window system.

public virtual Color? BottomBarBackgroundColor { get; set; }

Property Value

Color?

BottomBarForegroundColor

Gets the foreground color for text displayed in the bottom status bar.

public virtual Color? BottomBarForegroundColor { get; set; }

Property Value

Color?

ButtonBackgroundColor

Gets the background color for buttons in their default (unfocused, unselected) state.

public virtual Color? ButtonBackgroundColor { get; set; }

Property Value

Color?

ButtonDisabledBackgroundColor

Gets the background color for buttons when they are disabled and cannot be interacted with.

public virtual Color? ButtonDisabledBackgroundColor { get; set; }

Property Value

Color?

ButtonDisabledForegroundColor

Gets the foreground color for button text when the button is disabled.

public virtual Color? ButtonDisabledForegroundColor { get; set; }

Property Value

Color?

ButtonFocusedBackgroundColor

Gets the background color for buttons when they have keyboard focus.

public virtual Color? ButtonFocusedBackgroundColor { get; set; }

Property Value

Color?

ButtonFocusedForegroundColor

Gets the foreground color for button text when the button has keyboard focus.

public virtual Color? ButtonFocusedForegroundColor { get; set; }

Property Value

Color?

ButtonForegroundColor

Gets the foreground color for button text in the default (unfocused, unselected) state.

public virtual Color? ButtonForegroundColor { get; set; }

Property Value

Color?

ButtonSelectedBackgroundColor

Gets the background color for buttons when they are selected or pressed.

public virtual Color? ButtonSelectedBackgroundColor { get; set; }

Property Value

Color?

ButtonSelectedForegroundColor

Gets the foreground color for button text when the button is selected or pressed.

public virtual Color? ButtonSelectedForegroundColor { get; set; }

Property Value

Color?

CheckboxBackgroundColor

Gets the background color for checkboxes in their default state. Null means transparent.

public virtual Color? CheckboxBackgroundColor { get; set; }

Property Value

Color?

CheckboxCheckmarkColor

Gets the color used for the checkbox checkmark glyph.

public virtual Color? CheckboxCheckmarkColor { get; set; }

Property Value

Color?

CheckboxDisabledBackgroundColor

Gets the background color for checkboxes when they are disabled. Null means transparent.

public virtual Color? CheckboxDisabledBackgroundColor { get; set; }

Property Value

Color?

CheckboxDisabledForegroundColor

Gets the foreground color for checkbox text/glyph when the checkbox is disabled.

public virtual Color? CheckboxDisabledForegroundColor { get; set; }

Property Value

Color?

CheckboxFocusedBackgroundColor

Gets the background color for checkboxes when they have keyboard focus. Null means transparent.

public virtual Color? CheckboxFocusedBackgroundColor { get; set; }

Property Value

Color?

CheckboxFocusedForegroundColor

Gets the foreground color for checkbox text/glyph when the checkbox has keyboard focus.

public virtual Color? CheckboxFocusedForegroundColor { get; set; }

Property Value

Color?

CheckboxForegroundColor

Gets the foreground color for checkbox text/glyph in the default (unfocused) state.

public virtual Color? CheckboxForegroundColor { get; set; }

Property Value

Color?

CollapsibleHeaderFocusedBackgroundColor

Background color for a CollapsiblePanel header when the panel has keyboard focus. Default implementation returns WindowBackgroundColor (the normal window background) so existing themes keep working without code changes.

public virtual Color? CollapsibleHeaderFocusedBackgroundColor { get; set; }

Property Value

Color?

CollapsibleHeaderFocusedForegroundColor

Foreground color for a CollapsiblePanel header when the panel has keyboard focus. Default implementation returns ActiveTitleForegroundColor (the active-title accent) so existing themes keep working without code changes.

public virtual Color? CollapsibleHeaderFocusedForegroundColor { get; set; }

Property Value

Color?

DangerColor

Danger/error status seed. Null = a mode-tuned red.

public virtual Color? DangerColor { get; set; }

Property Value

Color?

DatePickerBackgroundColor

Gets the background color for the date picker control.

public virtual Color? DatePickerBackgroundColor { get; set; }

Property Value

Color?

DatePickerCalendarHeaderColor

Gets the color for the calendar popup header text.

public virtual Color? DatePickerCalendarHeaderColor { get; set; }

Property Value

Color?

DatePickerCalendarSelectedColor

Gets the highlight color for the selected date in the calendar popup.

public virtual Color? DatePickerCalendarSelectedColor { get; set; }

Property Value

Color?

DatePickerCalendarTodayColor

Gets the highlight color for today's date in the calendar popup.

public virtual Color? DatePickerCalendarTodayColor { get; set; }

Property Value

Color?

DatePickerDisabledBackgroundColor

Gets the background color for a disabled date picker (null = inherit/transparent).

public virtual Color? DatePickerDisabledBackgroundColor { get; set; }

Property Value

Color?

DatePickerDisabledForegroundColor

Gets the foreground color for disabled date segments.

public virtual Color? DatePickerDisabledForegroundColor { get; set; }

Property Value

Color?

DatePickerFocusedBackgroundColor

Gets the background color for the date picker when focused.

public virtual Color? DatePickerFocusedBackgroundColor { get; set; }

Property Value

Color?

DatePickerFocusedForegroundColor

Gets the foreground color for the date picker when focused.

public virtual Color? DatePickerFocusedForegroundColor { get; set; }

Property Value

Color?

DatePickerForegroundColor

Gets the foreground (text) color for the date picker control.

public virtual Color? DatePickerForegroundColor { get; set; }

Property Value

Color?

DatePickerSegmentBackgroundColor

Gets the background color for the active date segment.

public virtual Color? DatePickerSegmentBackgroundColor { get; set; }

Property Value

Color?

DatePickerSegmentForegroundColor

Gets the foreground color for the active date segment.

public virtual Color? DatePickerSegmentForegroundColor { get; set; }

Property Value

Color?

Description

Gets the human-readable description of the theme explaining its visual style.

public virtual string Description { get; set; }

Property Value

string

DesktopBackgroundChar

Gets the character used to fill the desktop background area.

public virtual char DesktopBackgroundChar { get; set; }

Property Value

char

DesktopBackgroundColor

Gets the background color for the desktop area behind all windows.

public virtual Color? DesktopBackgroundColor { get; set; }

Property Value

Color?

DesktopBackgroundGradient

Gets the optional gradient background for the desktop area. When set, the desktop renders with this gradient instead of a solid color. Returns null by default (solid color from DesktopBackgroundColor).

public virtual GradientBackground? DesktopBackgroundGradient { get; set; }

Property Value

GradientBackground

DesktopForegroundColor

Gets the foreground color for the desktop background character pattern.

public virtual Color? DesktopForegroundColor { get; set; }

Property Value

Color?

DropdownBackgroundColor

Gets the background color for dropdown control lists.

public virtual Color? DropdownBackgroundColor { get; set; }

Property Value

Color?

DropdownDisabledBackgroundColor

Gets the background color for a dropdown when it is disabled (null = inherit/transparent).

public virtual Color? DropdownDisabledBackgroundColor { get; set; }

Property Value

Color?

DropdownDisabledForegroundColor

Gets the foreground color for a dropdown when it is disabled.

public virtual Color? DropdownDisabledForegroundColor { get; set; }

Property Value

Color?

DropdownFocusedBackgroundColor

Gets the background color for a dropdown when it has keyboard focus (null = inherit/transparent).

public virtual Color? DropdownFocusedBackgroundColor { get; set; }

Property Value

Color?

DropdownFocusedForegroundColor

Gets the foreground color for a dropdown when it has keyboard focus.

public virtual Color? DropdownFocusedForegroundColor { get; set; }

Property Value

Color?

DropdownForegroundColor

Gets the foreground color for dropdown control list items.

public virtual Color? DropdownForegroundColor { get; set; }

Property Value

Color?

DropdownHighlightBackgroundColor

Gets the background color for highlighted/selected dropdown items.

public virtual Color? DropdownHighlightBackgroundColor { get; set; }

Property Value

Color?

DropdownHighlightForegroundColor

Gets the foreground color for highlighted/selected dropdown items.

public virtual Color? DropdownHighlightForegroundColor { get; set; }

Property Value

Color?

HtmlForegroundColor

Gets the default foreground color for HTML control text.

public virtual Color? HtmlForegroundColor { get; set; }

Property Value

Color?

InactiveBorderForegroundColor

Gets the foreground color for the border of inactive (unfocused) windows.

public virtual Color? InactiveBorderForegroundColor { get; set; }

Property Value

Color?

InactiveTitleForegroundColor

Gets the foreground color for the title text of inactive (unfocused) windows.

public virtual Color? InactiveTitleForegroundColor { get; set; }

Property Value

Color?

InfoColor

Info status seed. Null = a mode-tuned cyan/blue.

public virtual Color? InfoColor { get; set; }

Property Value

Color?

LineGraphBackgroundColor

Gets the background color for line graph controls. Null means transparent.

public virtual Color? LineGraphBackgroundColor { get; set; }

Property Value

Color?

ListBackgroundColor

Gets the background color for list controls. Null means transparent.

public virtual Color? ListBackgroundColor { get; set; }

Property Value

Color?

ListDisabledBackgroundColor

Gets the background color for list items when the control is disabled (null = inherit/transparent).

public virtual Color? ListDisabledBackgroundColor { get; set; }

Property Value

Color?

ListDisabledForegroundColor

Gets the foreground color for list items when the control is disabled.

public virtual Color? ListDisabledForegroundColor { get; set; }

Property Value

Color?

ListFocusedForegroundColor

Gets the foreground color for list items when the control has keyboard focus.

public virtual Color? ListFocusedForegroundColor { get; set; }

Property Value

Color?

ListForegroundColor

Gets the foreground color for list items in their default (unfocused, unselected) state.

public virtual Color? ListForegroundColor { get; set; }

Property Value

Color?

ListHoverBackgroundColor

Gets the background color for list items when hovered by the mouse. If null, falls back to highlight color.

public virtual Color? ListHoverBackgroundColor { get; set; }

Property Value

Color?

ListHoverForegroundColor

Gets the foreground color for list items when hovered by the mouse. If null, falls back to highlight color.

public virtual Color? ListHoverForegroundColor { get; set; }

Property Value

Color?

ListSelectedBackgroundColor

Gets the background color for the selected list item (null = inherit/transparent).

public virtual Color? ListSelectedBackgroundColor { get; set; }

Property Value

Color?

ListSelectedForegroundColor

Gets the foreground color for the selected list item.

public virtual Color? ListSelectedForegroundColor { get; set; }

Property Value

Color?

ListUnfocusedHighlightBackgroundColor

Gets the background color for list items when highlighted but the control is unfocused.

public virtual Color? ListUnfocusedHighlightBackgroundColor { get; set; }

Property Value

Color?

ListUnfocusedHighlightForegroundColor

Gets the foreground color for list items when highlighted but the control is unfocused.

public virtual Color? ListUnfocusedHighlightForegroundColor { get; set; }

Property Value

Color?

MenuBarBackgroundColor

Gets the background color for the menu bar (top-level items). Null means inherit from container.

public virtual Color? MenuBarBackgroundColor { get; set; }

Property Value

Color?

MenuBarForegroundColor

Gets the foreground color for the menu bar (top-level items). Null means inherit from container.

public virtual Color? MenuBarForegroundColor { get; set; }

Property Value

Color?

MenuBarHighlightBackgroundColor

Gets the background color for highlighted menu bar items.

public virtual Color? MenuBarHighlightBackgroundColor { get; set; }

Property Value

Color?

MenuBarHighlightForegroundColor

Gets the foreground color for highlighted menu bar items.

public virtual Color? MenuBarHighlightForegroundColor { get; set; }

Property Value

Color?

MenuDropdownBackgroundColor

Gets the background color for menu dropdowns.

public virtual Color? MenuDropdownBackgroundColor { get; set; }

Property Value

Color?

MenuDropdownForegroundColor

Gets the foreground color for menu dropdown items.

public virtual Color? MenuDropdownForegroundColor { get; set; }

Property Value

Color?

MenuDropdownHighlightBackgroundColor

Gets the background color for highlighted menu dropdown items.

public virtual Color? MenuDropdownHighlightBackgroundColor { get; set; }

Property Value

Color?

MenuDropdownHighlightForegroundColor

Gets the foreground color for highlighted menu dropdown items.

public virtual Color? MenuDropdownHighlightForegroundColor { get; set; }

Property Value

Color?

ModalBackgroundColor

Gets the background color for modal dialog windows.

public virtual Color? ModalBackgroundColor { get; set; }

Property Value

Color?

ModalBorderForegroundColor

Gets the foreground color for the border of modal dialog windows.

public virtual Color? ModalBorderForegroundColor { get; set; }

Property Value

Color?

ModalFlashColor

Gets the background color used when flashing modal windows to draw user attention.

public virtual Color? ModalFlashColor { get; set; }

Property Value

Color?

ModalTitleForegroundColor

Gets the foreground color for the title text of modal dialog windows.

public virtual Color? ModalTitleForegroundColor { get; set; }

Property Value

Color?

Mode

Gets the theme's declared light/dark mode. This is a label of the theme's identity (set by its author), not a computed value. Defaults to Dark (the library's built-in default themes are dark). Third-party themes that do not override this report Dark.

public virtual ThemeMode Mode { get; set; }

Property Value

ThemeMode

Name

Gets the unique name of the theme used for identification and selection.

public virtual string Name { get; set; }

Property Value

string

NotificationDangerWindowBackgroundColor

Gets the background color for danger/error notification windows.

public virtual Color? NotificationDangerWindowBackgroundColor { get; set; }

Property Value

Color?

NotificationInfoWindowBackgroundColor

Gets the background color for informational notification windows.

public virtual Color? NotificationInfoWindowBackgroundColor { get; set; }

Property Value

Color?

NotificationSuccessWindowBackgroundColor

Gets the background color for success notification windows.

public virtual Color? NotificationSuccessWindowBackgroundColor { get; set; }

Property Value

Color?

NotificationWarningWindowBackgroundColor

Gets the background color for warning notification windows.

public virtual Color? NotificationWarningWindowBackgroundColor { get; set; }

Property Value

Color?

NotificationWindowBackgroundColor

Gets the background color for generic notification windows without a specific type.

public virtual Color? NotificationWindowBackgroundColor { get; set; }

Property Value

Color?

PrimaryColor

Primary accent seed (borders, primary buttons). Null = derived. Drives the Primary role.

public virtual Color? PrimaryColor { get; set; }

Property Value

Color?

ProgressBarFilledColor

Gets the color for the filled portion of progress bars.

public virtual Color? ProgressBarFilledColor { get; set; }

Property Value

Color?

ProgressBarPercentageColor

Gets the color for the percentage text display on progress bars.

public virtual Color? ProgressBarPercentageColor { get; set; }

Property Value

Color?

ProgressBarUnfilledColor

Gets the color for the unfilled portion of progress bars.

public virtual Color? ProgressBarUnfilledColor { get; set; }

Property Value

Color?

PromptInputBackgroundColor

Gets the background color for prompt input fields in their default state.

public virtual Color? PromptInputBackgroundColor { get; set; }

Property Value

Color?

PromptInputFocusedBackgroundColor

Gets the background color for prompt input fields when they have keyboard focus.

public virtual Color? PromptInputFocusedBackgroundColor { get; set; }

Property Value

Color?

PromptInputFocusedForegroundColor

Gets the foreground color for text in prompt input fields when focused.

public virtual Color? PromptInputFocusedForegroundColor { get; set; }

Property Value

Color?

PromptInputForegroundColor

Gets the foreground color for text in prompt input fields in their default state.

public virtual Color? PromptInputForegroundColor { get; set; }

Property Value

Color?

ScrollbarThumbColor

General scrollbar thumb color when the scrollable control is focused. Default follows the active border so the scrollbar matches the control's border. Controls fall back to this unless they expose a per-control theme color or an instance override.

public virtual Color? ScrollbarThumbColor { get; set; }

Property Value

Color?

ScrollbarThumbUnfocusedColor

General scrollbar thumb color when the control is NOT focused. Defaults to the inactive border.

public virtual Color? ScrollbarThumbUnfocusedColor { get; set; }

Property Value

Color?

ScrollbarTrackColor

General scrollbar track color when focused. Defaults to null (unset): concrete themes such as ModernGray pin a value, and consumers fall back to a surface-appropriate color when this is unset.

public virtual Color? ScrollbarTrackColor { get; set; }

Property Value

Color?

ScrollbarTrackUnfocusedColor

General scrollbar track color when not focused. Defaults to null (unset): concrete themes such as ModernGray pin a value, and consumers fall back to a surface-appropriate color when this is unset.

public virtual Color? ScrollbarTrackUnfocusedColor { get; set; }

Property Value

Color?

SecondaryColor

Secondary accent seed. Null = derived from Primary.

public virtual Color? SecondaryColor { get; set; }

Property Value

Color?

SeparatorForegroundColor

Gets the foreground color for separator controls. Null means transparent (inherit from container).

public virtual Color? SeparatorForegroundColor { get; set; }

Property Value

Color?

ShowModalShadow

Gets a value indicating whether modal windows should display a drop shadow effect.

public virtual bool ShowModalShadow { get; set; }

Property Value

bool

SliderFilledTrackColor

Gets the color for the filled track portion of slider controls. Null means use default (Cyan1).

public virtual Color? SliderFilledTrackColor { get; set; }

Property Value

Color?

SliderFocusedThumbColor

Gets the color for the slider thumb indicator when focused. Null means use default (Yellow).

public virtual Color? SliderFocusedThumbColor { get; set; }

Property Value

Color?

SliderThumbColor

Gets the color for the slider thumb indicator. Null means use default (White classic, Grey93 modern).

public virtual Color? SliderThumbColor { get; set; }

Property Value

Color?

SliderTrackColor

Gets the color for the unfilled track portion of slider controls. Null means use default (Grey35 classic, Grey23 modern).

public virtual Color? SliderTrackColor { get; set; }

Property Value

Color?

SparklineBackgroundColor

Gets the background color for sparkline controls. Null means transparent.

public virtual Color? SparklineBackgroundColor { get; set; }

Property Value

Color?

StartMenuHeaderBackgroundColor

Gets the background color for the Start menu header area. Null means derive from dropdown colors.

public virtual Color? StartMenuHeaderBackgroundColor { get; set; }

Property Value

Color?

StartMenuHeaderForegroundColor

Gets the foreground color for the Start menu header area. Null means derive from dropdown colors.

public virtual Color? StartMenuHeaderForegroundColor { get; set; }

Property Value

Color?

StartMenuInfoStripForegroundColor

Gets the foreground color for the Start menu info strip. Null means derive from dropdown colors.

public virtual Color? StartMenuInfoStripForegroundColor { get; set; }

Property Value

Color?

StartMenuSectionHeaderBackgroundColor

Gets the background color for Start menu section headers. Null means derive from dropdown colors.

public virtual Color? StartMenuSectionHeaderBackgroundColor { get; set; }

Property Value

Color?

StatusBarBackgroundColor

Gets the background color for status bar controls. Null means inherit from container.

public virtual Color? StatusBarBackgroundColor { get; set; }

Property Value

Color?

StatusBarForegroundColor

Gets the foreground color for status bar controls. Null means inherit from container.

public virtual Color? StatusBarForegroundColor { get; set; }

Property Value

Color?

StatusBarShortcutForegroundColor

Gets the foreground color for shortcut key hints in status bar controls. Null means use Cyan1.

public virtual Color? StatusBarShortcutForegroundColor { get; set; }

Property Value

Color?

SuccessColor

Success status seed. Null = a mode-tuned green.

public virtual Color? SuccessColor { get; set; }

Property Value

Color?

TabContentBackgroundColor

Gets the background color for the TabControl content area. Null means inherit from container.

public virtual Color? TabContentBackgroundColor { get; set; }

Property Value

Color?

TabContentBorderColor

Gets the border color for the TabControl content area. Null means use active window border color.

public virtual Color? TabContentBorderColor { get; set; }

Property Value

Color?

TabHeaderActiveBackgroundColor

Gets the background color for the active (selected) tab header.

public virtual Color? TabHeaderActiveBackgroundColor { get; set; }

Property Value

Color?

TabHeaderActiveFocusedBackgroundColor

Background for the active tab header when the tab strip has keyboard focus. Default implementation returns TabHeaderActiveBackgroundColor (so existing themes keep working without code changes).

public virtual Color? TabHeaderActiveFocusedBackgroundColor { get; set; }

Property Value

Color?

TabHeaderActiveFocusedForegroundColor

Foreground for the active tab header when the tab strip has keyboard focus. Default implementation returns TabHeaderActiveForegroundColor.

public virtual Color? TabHeaderActiveFocusedForegroundColor { get; set; }

Property Value

Color?

TabHeaderActiveForegroundColor

Gets the foreground color for the active (selected) tab header.

public virtual Color? TabHeaderActiveForegroundColor { get; set; }

Property Value

Color?

TabHeaderBackgroundColor

Gets the background color for inactive tab headers.

public virtual Color? TabHeaderBackgroundColor { get; set; }

Property Value

Color?

TabHeaderDisabledBackgroundColor

Gets the background color for disabled tab headers.

public virtual Color? TabHeaderDisabledBackgroundColor { get; set; }

Property Value

Color?

TabHeaderDisabledForegroundColor

Gets the foreground color for disabled tab headers.

public virtual Color? TabHeaderDisabledForegroundColor { get; set; }

Property Value

Color?

TabHeaderFocusedBackgroundColor

Background for inactive tab headers when the tab strip has keyboard focus. Default implementation returns TabHeaderBackgroundColor.

public virtual Color? TabHeaderFocusedBackgroundColor { get; set; }

Property Value

Color?

TabHeaderFocusedForegroundColor

Foreground for inactive tab headers when the tab strip has keyboard focus. Default implementation returns TabHeaderForegroundColor.

public virtual Color? TabHeaderFocusedForegroundColor { get; set; }

Property Value

Color?

TabHeaderForegroundColor

Gets the foreground color for inactive tab headers.

public virtual Color? TabHeaderForegroundColor { get; set; }

Property Value

Color?

TableBackgroundColor

Gets the background color for table controls.

public virtual Color? TableBackgroundColor { get; set; }

Property Value

Color?

TableBorderColor

Gets the border color for table controls. Null means falls back to active window border color.

public virtual Color? TableBorderColor { get; set; }

Property Value

Color?

TableForegroundColor

Gets the foreground color for table controls.

public virtual Color? TableForegroundColor { get; set; }

Property Value

Color?

TableHeaderBackgroundColor

Gets the background color for table headers.

public virtual Color? TableHeaderBackgroundColor { get; set; }

Property Value

Color?

TableHeaderForegroundColor

Gets the foreground color for table headers.

public virtual Color? TableHeaderForegroundColor { get; set; }

Property Value

Color?

TableHoverBackgroundColor

Gets the background color for hovered rows in the table.

public virtual Color? TableHoverBackgroundColor { get; set; }

Property Value

Color?

TableHoverForegroundColor

Gets the foreground color for hovered rows in the table.

public virtual Color? TableHoverForegroundColor { get; set; }

Property Value

Color?

TableScrollbarThumbColor

Gets the color for the table scrollbar thumb.

public virtual Color? TableScrollbarThumbColor { get; set; }

Property Value

Color?

TableScrollbarTrackColor

Gets the color for the table scrollbar track.

public virtual Color? TableScrollbarTrackColor { get; set; }

Property Value

Color?

TableSelectionBackgroundColor

Gets the background color for selected rows in the table when focused.

public virtual Color? TableSelectionBackgroundColor { get; set; }

Property Value

Color?

TableSelectionForegroundColor

Gets the foreground color for selected rows in the table when focused.

public virtual Color? TableSelectionForegroundColor { get; set; }

Property Value

Color?

TableUnfocusedSelectionBackgroundColor

Gets the background color for selected rows in the table when unfocused.

public virtual Color? TableUnfocusedSelectionBackgroundColor { get; set; }

Property Value

Color?

TableUnfocusedSelectionForegroundColor

Gets the foreground color for selected rows in the table when unfocused.

public virtual Color? TableUnfocusedSelectionForegroundColor { get; set; }

Property Value

Color?

TertiaryColor

Tertiary accent seed. Null = derived from Secondary.

public virtual Color? TertiaryColor { get; set; }

Property Value

Color?

TextEditFocusedNotEditing

Gets the background color for text edit controls when focused but not in editing mode.

public virtual Color? TextEditFocusedNotEditing { get; set; }

Property Value

Color?

TimePickerBackgroundColor

Gets the background color for the time picker control.

public virtual Color? TimePickerBackgroundColor { get; set; }

Property Value

Color?

TimePickerDisabledForegroundColor

Gets the foreground color for disabled time segments.

public virtual Color? TimePickerDisabledForegroundColor { get; set; }

Property Value

Color?

TimePickerFocusedBackgroundColor

Gets the background color for the time picker when focused.

public virtual Color? TimePickerFocusedBackgroundColor { get; set; }

Property Value

Color?

TimePickerFocusedForegroundColor

Gets the foreground color for the time picker when focused.

public virtual Color? TimePickerFocusedForegroundColor { get; set; }

Property Value

Color?

TimePickerForegroundColor

Gets the foreground (text) color for the time picker control.

public virtual Color? TimePickerForegroundColor { get; set; }

Property Value

Color?

TimePickerSegmentBackgroundColor

Gets the background color for the active time segment.

public virtual Color? TimePickerSegmentBackgroundColor { get; set; }

Property Value

Color?

TimePickerSegmentForegroundColor

Gets the foreground color for the active time segment.

public virtual Color? TimePickerSegmentForegroundColor { get; set; }

Property Value

Color?

ToolbarBackgroundColor

Gets the background color for toolbar controls. Null means transparent (inherit from container).

public virtual Color? ToolbarBackgroundColor { get; set; }

Property Value

Color?

ToolbarForegroundColor

Gets the foreground color for toolbar controls. Null means transparent (inherit from container).

public virtual Color? ToolbarForegroundColor { get; set; }

Property Value

Color?

TopBarBackgroundColor

Gets the background color for the top application bar of the console window system.

public virtual Color? TopBarBackgroundColor { get; set; }

Property Value

Color?

TopBarForegroundColor

Gets the foreground color for text displayed in the top application bar.

public virtual Color? TopBarForegroundColor { get; set; }

Property Value

Color?

TreeBackgroundColor

Gets the background color for tree controls. Null means transparent.

public virtual Color? TreeBackgroundColor { get; set; }

Property Value

Color?

TreeSelectionBackgroundColor

Gets the background color for selected tree nodes when focused. Null means transparent.

public virtual Color? TreeSelectionBackgroundColor { get; set; }

Property Value

Color?

TreeUnfocusedSelectionBackgroundColor

Gets the background color for selected tree nodes when unfocused. Null means transparent.

public virtual Color? TreeUnfocusedSelectionBackgroundColor { get; set; }

Property Value

Color?

UseDoubleLineBorderForModal

Gets a value indicating whether modal windows should use double-line border characters.

public virtual bool UseDoubleLineBorderForModal { get; set; }

Property Value

bool

WarningColor

Warning status seed. Null = a mode-tuned amber.

public virtual Color? WarningColor { get; set; }

Property Value

Color?

WindowBackgroundColor

Gets the default background color for standard window content areas.

public virtual Color WindowBackgroundColor { get; set; }

Property Value

Color

WindowForegroundColor

Gets the default foreground color for text in standard window content areas.

public virtual Color WindowForegroundColor { get; set; }

Property Value

Color