UNPKG

4.38 kBCSSView Raw
1/*
2 * Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
5 * the License. A copy of the License is located at
6 *
7 * http://aws.amazon.com/apache2.0/
8 *
9 * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
10 * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
11 * and limitations under the License.
12 */
13:root {
14
15 /* Colors */
16 --amazonOrange: #FF9900;
17 --lightAmazonOrange: #FFAC31;
18 --darkAmazonOrange: #E88B01;
19 --squidInk: #232F3E;
20 --lightSquidInk: #31465F;
21 --deepSquidInk: #152939;
22 --grey: #828282;
23 --lightGrey: #C4C4C4;
24 --silver: #E1E4EA;
25 --darkBlue: #31465F;
26 --red: #DD3F5B;
27 --white: #FFFFFF;
28 --light-blue: #00a1c9;
29
30
31 /* Theme */
32 --button-color: var(--white);
33 --button-background-color: var(--amazonOrange);
34 --button-click: var(--darkAmazonOrange);
35 --link-color: var(--amazonOrange);
36 --form-color: var(--white);
37 --input-color: var(--deepSquidInk);
38 --input-background-color: var(--white);
39
40 --font-family: "Amazon Ember","Helvetica Neue Light","Helvetica Neue","Helvetica" ,"Arial","sans-serif";
41 --body-background: #F8F4F4;
42
43 /** Angular Theme **/
44 --component-width-desktop: 460px;
45 --component-width-mobile: 100%;
46
47 --color-primary: #FF9900;
48 --color-primary-accent: #232F3E;
49 --color-primary-highlight: #FFC46D;
50
51 --color-background:#232F3E;
52
53 --color-secondary: #152939;
54 --color-secondary-accent: #31465F;
55
56 --color-danger: #DD3F5B;
57 --color-error: #D0021B;
58
59 --color-accent-brown: #828282;
60 --color-accent-blue: #E1E4EA;
61
62 --gradient-blaze: linear-gradient(270deg, #FFC300 0%, #FF9000 100%);
63
64 --color-blue: #007EB9;
65 --color-purple: #527FFF;
66 --color-gray: #828282;
67 --color-white: #FFFFFF;
68
69 --input-border: 1px solid #C4C4C4;
70 --input-padding: 0.5em 0.5em 0.3em 1em;
71
72 --box-shadow: 1px 1px 4px 0 rgba(0,0,0,0.15);
73 --button-height: 42px;
74
75 --interactions-conversation-height: 250px;
76
77 /* Ionic Theme */
78
79 /** primary **/
80 --ion-color-primary: #FF9900;
81 --ion-color-primary-rgb: 255,153,0;
82 --ion-color-primary-contrast: #fff;
83 --ion-color-primary-contrast-rgb: 255,255,255;
84 --ion-color-primary-shade: #232F3E;
85 --ion-color-primary-tint: #FFC46D;
86
87 /** secondary **/
88 --ion-color-secondary: #32db64;
89 --ion-color-secondary-rgb: 50,219,100;
90 --ion-color-secondary-contrast: #fff;
91 --ion-color-secondary-contrast-rgb: 255,255,255;
92 --ion-color-secondary-shade: #2cc158;
93 --ion-color-secondary-tint: #47df74;
94
95 /** tertiary **/
96 --ion-color-tertiary: #f4a942;
97 --ion-color-tertiary-rgb: 244,169,66;
98 --ion-color-tertiary-contrast: #fff;
99 --ion-color-tertiary-contrast-rgb: 255,255,255;
100 --ion-color-tertiary-shade: #d7953a;
101 --ion-color-tertiary-tint: #f5b255;
102
103 /** success **/
104 --ion-color-success: #10dc60;
105 --ion-color-success-rgb: 16,220,96;
106 --ion-color-success-contrast: #fff;
107 --ion-color-success-contrast-rgb: 255,255,255;
108 --ion-color-success-shade: #0ec254;
109 --ion-color-success-tint: #28e070;
110
111 /** warning **/
112 --ion-color-warning: #ffce00;
113 --ion-color-warning-rgb: 255,206,0;
114 --ion-color-warning-contrast: #000;
115 --ion-color-warning-contrast-rgb: 0,0,0;
116 --ion-color-warning-shade: #e0b500;
117 --ion-color-warning-tint: #ffd31a;
118
119 /** danger **/
120 --ion-color-danger: #f53d3d;
121 --ion-color-danger-rgb: 245,61,61;
122 --ion-color-danger-contrast: #fff;
123 --ion-color-danger-contrast-rgb: 255,255,255;
124 --ion-color-danger-shade: #d83636;
125 --ion-color-danger-tint: #f65050;
126
127 /** light **/
128 --ion-color-light: #f4f4f4;
129 --ion-color-light-rgb: 244,244,244;
130 --ion-color-light-contrast: #000;
131 --ion-color-light-contrast-rgb: 0,0,0;
132 --ion-color-light-shade: #d7d7d7;
133 --ion-color-light-tint: #f5f5f5;
134
135 /** medium **/
136 --ion-color-medium: #989aa2;
137 --ion-color-medium-rgb: 152,154,162;
138 --ion-color-medium-contrast: #000;
139 --ion-color-medium-contrast-rgb: 0,0,0;
140 --ion-color-medium-shade: #86888f;
141 --ion-color-medium-tint: #a2a4ab;
142
143 /** dark **/
144 --ion-color-dark: #222;
145 --ion-color-dark-rgb: 34,34,34;
146 --ion-color-dark-contrast: #fff;
147 --ion-color-dark-contrast-rgb: 255,255,255;
148 --ion-color-dark-shade: #1e1e1e;
149 --ion-color-dark-tint: #383838;
150}