mirror of
https://github.com/lxsang/Diya-API.git
synced 2024-12-27 03:48:21 +01:00
19 lines
521 B
Smalltalk
19 lines
521 B
Smalltalk
Class {
|
|
#name : #DiyaDefaultStyle,
|
|
#superclass : #Diya2DNodeStyle,
|
|
#category : #'Diya-Graphics'
|
|
}
|
|
|
|
{ #category : #initialization }
|
|
DiyaDefaultStyle >> initialize [
|
|
super initialize.
|
|
bgcolor := (Color r: 0.2118 g: 0.2118 b: 0.2118).
|
|
color := Color white.
|
|
border := 1.
|
|
fontSize := 18.
|
|
fontFamilly := DiyaFontManager uniqueInstance defaultFamily.
|
|
fontStyle := DiyaFontManager uniqueInstance defaultStyle.
|
|
borderColor := (Color r: 0.051 g: 0.051 b: 0.051).
|
|
bgcolor2 := (Color r: 0.1529 g: 0.1529 b: 0.1529)
|
|
]
|