-
Notifications
You must be signed in to change notification settings - Fork 1
/
colors.html
35 lines (28 loc) · 921 Bytes
/
colors.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<link rel="import" href="../polymer/polymer.html">
<style is="custom-style">
:root {
/* Default primary UI colour
User configurable to change all elements */
--simpla-primary-color: var(--simpla-blue);
/* White/Black opacities */
--simpla-light-black: rgba(0,0,0,0.12);
--simpla-med-black: rgba(0,0,0,0.45);
--simpla-dark-black: rgba(0,0,0,0.7);
--simpla-light-white: rgba(255,255,255, 0.25);
--simpla-med-white: rgba(255,255,255,0.7);
--simpla-bright-white: rgba(255,255,255,0.85);
/* Greyscale */
--simpla-grey-50: #f8f9fb;
--simpla-grey-100: #f4f5f6;
--simpla-grey-300: #e5e8ec;
--simpla-grey-500: #b2bcc8;
--simpla-grey-700: #767d85;
/* Colors */
--simpla-text-color: #303c46;
--simpla-blue: #1bd4dc;
--simpla-green: #18c48b;
--simpla-yellow: #ffeb3b;
--simpla-orange: #f1c40f;
--simpla-red: #f44336;
}
</style>