SolarizedDark.st
author Jan Vrany <jan.vrany@labware.com>
Tue, 09 Jun 2020 11:02:53 +0100
branchjv
changeset 19589 8f1c638e83cf
parent 18822 07d66af18f0d
child 19608 98f7cba0ce8c
permissions -rw-r--r--
Fix "accept" action in `ChangeSetBrowser2` when using one-column layout

"
 COPYRIGHT (c) 1988 by Claus Gittinger / eXept Software AG
 COPYRIGHT (c) 2015-2016 Jan Vrany
              All Rights Reserved

 This software is furnished under a license and may be used
 only in accordance with the terms of that license and with the
 inclusion of the above copyright notice.   This software may not
 be provided or otherwise made available to, or used by, any
 other person.  No title to or ownership of the software is
 hereby transferred.
"
"{ Package: 'stx:libtool' }"

"{ NameSpace: Smalltalk }"

Solarized subclass:#SolarizedDark
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'Views-Text-Theme'
!

!SolarizedDark class methodsFor:'documentation'!

copyright
"
 COPYRIGHT (c) 1988 by Claus Gittinger / eXept Software AG
 COPYRIGHT (c) 2015-2016 Jan Vrany
              All Rights Reserved

 This software is furnished under a license and may be used
 only in accordance with the terms of that license and with the
 inclusion of the above copyright notice.   This software may not
 be provided or otherwise made available to, or used by, any
 other person.  No title to or ownership of the software is
 hereby transferred.
"
! !

!SolarizedDark methodsFor:'styles'!

defaultSyntaxBackground
    "Return a background color for the code editor. If nil is returned,
     a TextView's default background is used instread."

    ^ Base03

    "Created: / 11-12-2017 / 17:41:15 / jv"
!

defaultSyntaxColor
    "the color used for anything else;
     If syntaxColoring is turned on."

    ^ Base1

    "Created: / 11-12-2017 / 17:41:25 / jv"
! !