Skip to content

Commit

Permalink
Hardcode some colors from Light theme since it causes errors in the d…
Browse files Browse the repository at this point in the history
…eployment from non-ui Pharo (that's the only theme supported right now).
  • Loading branch information
tinchodias committed Mar 28, 2019
1 parent f2ae151 commit a0cc0a0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
@@ -1,6 +1,6 @@
actions
openFullScreen
HNWorldPresenter new openWorldWithSpec widget
color: UIManager default theme windowColor;
borderColor: UIManager default theme windowColor;
color: Color lightGray "UIManager default theme windowColor";
borderColor: Color lightGray "UIManager default theme windowColor";
borderWidth: 6
Expand Up @@ -4,5 +4,5 @@ initialMessageMorph
font := LogicalFont familyName: StandardFonts defaultFont familyName pointSize: 18.
^ 'Drop a directory here' asMorph
font: font emphasis: TextEmphasis bold value;
color: (UIManager default theme textColor alpha: 0.2);
color: (Color black alpha: 0.2);
yourself

0 comments on commit a0cc0a0

Please sign in to comment.