summaryrefslogtreecommitdiffstats
path: root/chromium/chrome/browser/resources/local_ntp/local_ntp_common.css
blob: 0f89aa122927e298e3d7c2ae1f3390b12e00a4fe (plain)
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
/* Copyright 2019 The Chromium Authors. All rights reserved.
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file. */

html {
  /* Material Design colors. Keep in sync with ui/gfx/color_palette.h. */

  --dark-mode-bg-rgb: 53, 54, 58;
  --dark-mode-dialog-rgb: 41, 42, 45;

  /* Google Grey */
  --GG050-rgb: 248, 249, 250;
  --GG100-rgb: 241, 243, 244;
  --GG200-rgb: 232, 234, 237;
  --GG300-rgb: 218, 220, 224;
  --GG400-rgb: 189, 193, 198;
  --GG500-rgb: 154, 160, 166;
  --GG600-rgb: 128, 134, 139;
  --GG700-rgb: 95, 99, 104;
  --GG800-rgb: 60, 64, 67;
  --GG900-rgb: 32, 33, 36;

  /* Google Blue */
  --GB050-rgb: 232, 240, 254;
  --GB100-rgb: 210, 227, 252;
  --GB200-rgb: 174, 203, 250;
  --GB300-rgb: 138, 180, 248;
  --GB400-rgb: 102, 157, 246;
  --GB500-rgb: 66, 133, 244;
  --GB600-rgb: 26, 115, 232;
  --GB700-rgb: 25, 103, 210;
  --GB800-rgb: 24, 90, 188;
  --GB900-rgb: 23, 78, 166;
  --GB400-dark-rgb: 107, 165, 237;
  --GB600-dark-rgb: 37, 129, 223;

  /* Google Red */
  --GR050-rgb: 252, 142, 230;
  --GR100-rgb: 250, 210, 207;
  --GR200-rgb: 246, 174, 169;
  --GR300-rgb: 242, 139, 130;
  --GR400-rgb: 238, 103, 92;
  --GR500-rgb: 234, 67, 53;
  --GR600-rgb: 217, 48, 37;
  --GR700-rgb: 197, 34, 31;
  --GR800-rgb: 179, 20, 18;
  --GR900-rgb: 165, 14, 14;
  --GR500-dark-rgb: 230, 106, 94;
  --GR600-dark-rgb: 211, 59, 48;
  --GR800-dark-rgb: 180, 27, 26;

  --dark-mode-shadow: 0 1px 3px 0 rgba(0, 0, 0, .3),
      0 4px 8px 3px rgba(0, 0, 0, .15);
}

body * {
  /* Default font families for Linux and ChromeOS. */
  font-family: 'Roboto', arial, sans-serif;
}

.win * {
  /* Default font families for Windows */
  font-family: 'Segoe UI', 'Roboto', arial, sans-serif;
}

.mac * {
  /* Default font families for MacOS */
  font-family: system-ui, BlinkMacSystemFont, 'Roboto', arial, sans-serif;
}

/* Removes blue focus ring on mouse navigation */
.mouse-navigation {
  outline: none;
}