Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
keras-team
GitHub Repository: keras-team/keras-io
Path: blob/master/theme/css/colors.css
3282 views
1
:root {
2
--white:#FFFFFF;
3
--grey: #E7E7E7;
4
--grey-blue: #425066;
5
6
/* Light Colors*/
7
--light-grey: #F3F3F3;
8
9
/* Dark Colors */
10
--dark-grey: #3F3F3F;
11
--dark-red: #AB0000;
12
13
/* Medium Colors */
14
--medium-red: #D00101;
15
--medium-grey: #DDDDDD;
16
17
/* Border Colors */
18
--border-grey: #DCDCDC;
19
--border-red: #A80000;
20
21
/* Shadow Colors */
22
--shadow-grey: #9C9C9C;
23
24
/* Text Colors */
25
--text-black: #292321;
26
--text-red: #A30000;
27
--alternate-red: #d00000;
28
29
/* Code Colors */
30
--code-background: #292321;
31
--code-foreground: #ccc;
32
}
33
34