File: colors.scss

package info (click to toggle)
scikit-learn 1.7.2%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 25,752 kB
  • sloc: python: 219,120; cpp: 5,790; ansic: 846; makefile: 191; javascript: 110
file content (51 lines) | stat: -rw-r--r-- 1,494 bytes parent folder | download
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/**
 * This is the style sheet for customized colors of scikit-learn.
 * Tints and shades are generated by https://colorkit.co/color-shades-generator/
 *
 * This file is compiled into styles/colors.css by sphinxcontrib.sass, see:
 * https://sass-lang.com/guide/
 */

:root {
  /* scikit-learn cyan */
  --sk-cyan-tint-9: #edf7fd;
  --sk-cyan-tint-8: #daeffa;
  --sk-cyan-tint-7: #c8e6f8;
  --sk-cyan-tint-6: #b5def5;
  --sk-cyan-tint-5: #a2d6f2;
  --sk-cyan-tint-4: #8fcdef;
  --sk-cyan-tint-3: #7ac5ec;
  --sk-cyan-tint-2: #64bce9;
  --sk-cyan-tint-1: #4bb4e5;
  --sk-cyan: #29abe2;
  --sk-cyan-shades-1: #2294c4;
  --sk-cyan-shades-2: #1c7ea8;
  --sk-cyan-shades-3: #15688c;
  --sk-cyan-shades-4: #0f5471;
  --sk-cyan-shades-5: #094057;
  --sk-cyan-shades-6: #052d3e;
  --sk-cyan-shades-7: #021b27;
  --sk-cyan-shades-8: #010b12;
  --sk-cyan-shades-9: #000103;

  /* scikit-learn orange */
  --sk-orange-tint-9: #fff5ec;
  --sk-orange-tint-8: #ffead9;
  --sk-orange-tint-7: #ffe0c5;
  --sk-orange-tint-6: #ffd5b2;
  --sk-orange-tint-5: #fecb9e;
  --sk-orange-tint-4: #fdc08a;
  --sk-orange-tint-3: #fcb575;
  --sk-orange-tint-2: #fbaa5e;
  --sk-orange-tint-1: #f99f44;
  --sk-orange: #f7931e;
  --sk-orange-shades-1: #d77f19;
  --sk-orange-shades-2: #b76c13;
  --sk-orange-shades-3: #99590e;
  --sk-orange-shades-4: #7c4709;
  --sk-orange-shades-5: #603605;
  --sk-orange-shades-6: #452503;
  --sk-orange-shades-7: #2c1601;
  --sk-orange-shades-8: #150800;
  --sk-orange-shades-9: #030100;
}