123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- #
- # Run-time configuration file for dialog, matches Dragora color scheme.
- #
- # Types of values:
- #
- # Number - <number>
- # String - "string"
- # Boolean - <ON|OFF>
- # Attribute - (foreground,background,highlight?)
- # Set aspect-ration.
- aspect = 0
- # Set separator (for multiple widgets output).
- separate_widget = ""
- # Set tab-length (for textbox tab-conversion).
- tab_len = 0
- # Make tab-traversal for checklist, etc., include the list.
- visit_items = OFF
- # Shadow dialog boxes? This also turns on color.
- use_shadow = OFF
- # Turn color support ON or OFF
- use_colors = ON
- # Screen color
- screen_color = (WHITE,BLACK,ON)
- # Shadow color
- shadow_color = (BLACK,BLACK,ON)
- # Dialog box color
- dialog_color = (WHITE,BLACK,ON)
- # Dialog box title color
- title_color = (GREEN,BLACK,ON)
- # Dialog box border color
- border_color = (YELLOW,BLACK,OFF)
- # Active button color
- button_active_color = (GREEN,BLACK,ON)
- # Inactive button color
- button_inactive_color = (WHITE,BLACK,ON)
- # Active button key color
- button_key_active_color = (WHITE,GREEN,ON)
- # Inactive button key color
- button_key_inactive_color = (YELLOW,BLACK,OFF)
- # Active button label color
- button_label_active_color = (WHITE,GREEN,ON)
- # Inactive button label color
- button_label_inactive_color = (WHITE,BLACK,ON)
- # Input box color
- inputbox_color = dialog_color
- # Input box border color
- inputbox_border_color = (CYAN,BLACK,OFF)
- # Search box color
- searchbox_color = dialog_color
- # Search box title color
- searchbox_title_color = title_color
- # Search box border color
- searchbox_border_color = (CYAN,BLACK,OFF)
- # File position indicator color
- position_indicator_color = (GREEN,BLACK,OFF)
- # Menu box color
- menubox_color = dialog_color
- # Menu box border color
- menubox_border_color = (CYAN,BLACK,OFF)
- # Item color
- item_color = (WHITE,BLACK,OFF)
- # Selected item color
- item_selected_color = (BLACK,GREEN,OFF)
- # Tag color
- tag_color = (WHITE,BLACK,OFF)
- # Selected tag color
- tag_selected_color = (BLACK,GREEN,OFF)
- # Tag key color
- tag_key_color = (YELLOW,BLACK,OFF)
- # Selected tag key color
- tag_key_selected_color = (WHITE,GREEN,ON)
- # Check box color
- check_color = (WHITE,BLACK,ON)
- # Selected check box color
- check_selected_color = (CYAN,GREEN,ON)
- # Up arrow color
- uarrow_color = position_indicator_color
- # Down arrow color
- darrow_color = uarrow_color
- # Item help-text color
- itemhelp_color = (WHITE,BLACK,OFF)
- # Active form text color
- form_active_text_color = (WHITE,BLUE,ON)
- # Form text color
- form_text_color = (GREEN,BLACK,ON)
- # Readonly form item color
- form_item_readonly_color = (YELLOW,BLACK,OFF)
- # Dialog box gauge color
- gauge_color = (GREEN,BLACK,OFF)
- # Dialog box border2 color
- border2_color = border_color
- # Input box border2 color
- inputbox_border2_color = (CYAN,BLACK,ON)
- # Search box border2 color
- searchbox_border2_color = (CYAN,BLACK,ON)
- # Menu box border2 color
- menubox_border2_color = (CYAN,BLACK,ON)
|