diff options
| author | Simon Robertshaw <simon@hardwired.org.uk> | 2012-05-14 19:47:14 (GMT) |
|---|---|---|
| committer | Simon Robertshaw <simon@hardwired.org.uk> | 2012-05-14 19:47:14 (GMT) |
| commit | f39d2361e7e7ae13f84ab61920930847742b413a (patch) | |
| tree | 9dcdaadde02620ce00aaf460a9c7cd5e2c954770 /src/Style.cpp | |
| parent | 4bb90d0d79d983c2f6d16af4575661b845a3d72f (diff) | |
| download | powder-f39d2361e7e7ae13f84ab61920930847742b413a.zip powder-f39d2361e7e7ae13f84ab61920930847742b413a.tar.gz | |
Improve appearance of some dialogues, style defaults
Diffstat (limited to 'src/Style.cpp')
| -rw-r--r-- | src/Style.cpp | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/Style.cpp b/src/Style.cpp new file mode 100644 index 0000000..86388f9 --- /dev/null +++ b/src/Style.cpp @@ -0,0 +1,22 @@ +// +// Style.cpp +// The Powder Toy +// +// Created by Simon Robertshaw on 14/05/2012. +// Copyright (c) 2012 __MyCompanyName__. All rights reserved. +// + +#include <iostream> +#include "Style.h" + +namespace style { + ui::Colour Colour::InformationTitle = ui::Colour(140, 140, 255); + ui::Colour Colour::WarningTitle = ui::Colour(255, 255, 50); + ui::Colour Colour::ErrorTitle = ui::Colour(255, 20, 20); + + ui::Colour Colour::ActiveBorder = ui::Colour(255, 255, 255); + ui::Colour Colour::InactiveBorder = ui::Colour(180, 180, 180); + + ui::Colour Colour::ActiveBackground = ui::Colour(50, 50, 50); + ui::Colour Colour::InactiveBackground = ui::Colour(0, 0, 0); +}
\ No newline at end of file |
