Bug 1540028 [wpt PR 16099] - Catch more exceptions in Document-createElement-namespac...
[gecko.git] / widget / android / AndroidColors.h
blob0109d57b8b5ba261fb01e8a179cb5c84b65b4abe
1 /* -*- Mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2; -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 #ifndef mozilla_widget_AndroidColors_h
7 #define mozilla_widget_AndroidColors_h
9 #include "mozilla/gfx/2D.h"
11 namespace mozilla {
12 namespace widget {
14 static const gfx::Color sAndroidBackgroundColor(gfx::Color(1.0f, 1.0f, 1.0f));
15 static const gfx::Color sAndroidBorderColor(gfx::Color(0.73f, 0.73f, 0.73f));
16 static const gfx::Color sAndroidCheckColor(gfx::Color(0.19f, 0.21f, 0.23f));
17 static const gfx::Color sAndroidDisabledColor(gfx::Color(0.88f, 0.88f, 0.88f));
18 static const gfx::Color sAndroidActiveColor(gfx::Color(0.94f, 0.94f, 0.94f));
20 } // namespace widget
21 } // namespace mozilla
23 #endif // mozilla_widget_AndroidColors_h