TerminalView: Use more visible default colors for dark backgrounds.

[GB.FORM.TERMINAL]
* NEW: TerminalView: Use more visible default colors for dark backgrounds.
This commit is contained in:
gambas 2017-08-25 23:10:06 +02:00
parent 63371c84f6
commit 0d520539b9
3 changed files with 221 additions and 225 deletions

View File

@ -6,9 +6,7 @@
Arrangement = Arrange.Vertical
{ TerminalView1 TerminalView
MoveScaled(6,1,59,52)
Font = Font["Gambas,10"]
Background = Color.TextBackground
Foreground = Color.TextForeground
Font = Font["Ubuntu Mono,11"]
Expand = True
Border = False
Limit = 0

View File

@ -1,8 +1,13 @@
' Gambas module file
Private $aInvertColor As Integer[] = [
&H000000, &H800000, &H008000, &H808000, &H000080, &H800080, &H008080, &Hc0c0c0,
&H808080, &Hff0000, &H00ff00, &Hffff00, &H0000ff, &Hff00ff, &H00ffff, &Hffffff]
Public Sub Main()
Print "\e[38;5;10mGambas\e[m"
Print "\e[48;5;10mGambas\e[m"
End
End