go.chromium.org/luci@v0.0.0-20240309015107-7cdc2e660f33/milo/ui/src/common/styles/style.css (about) 1 /* Copyright 2023 The LUCI Authors. 2 ** 3 ** Licensed under the Apache License, Version 2.0 (the "License"); 4 ** you may not use this file except in compliance with the License. 5 ** You may obtain a copy of the License at 6 ** 7 ** http://www.apache.org/licenses/LICENSE-2.0 8 ** 9 ** Unless required by applicable law or agreed to in writing, software 10 ** distributed under the License is distributed on an "AS IS" BASIS, 11 ** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 ** See the License for the specific language governing permissions and 13 ** limitations under the License. 14 */ 15 16 body { 17 margin: 0; 18 padding: 0px; 19 color: var(--default-text-color); 20 font-family: "Google Sans", "Helvetica Neue", sans-serif; 21 font-size: 14px; 22 letter-spacing: 0.25px; 23 } 24 25 html { 26 --default-text-color: #212121; 27 --light-text-color: #636363; 28 --greyed-out-text-color: #808080; 29 --active-text-color: #1976d2; 30 31 --exonerated-color: #0084ff; 32 --success-color: #169c16; 33 --failure-color: #d23a2d; 34 --warning-text-color: #ff9900; 35 --warning-color: #ffae00; 36 --scheduled-color: #73808c; 37 --started-color: #ff8000; 38 --critical-failure-color: #6c40bf; 39 --canceled-color: var(--exonerated-color); 40 41 --scheduled-bg-color: #b7c1c9; 42 --started-bg-color: #ffd1a2; 43 --success-bg-color: #97ddbb; 44 --failure-bg-color: #ffc9c5; 45 --critical-failure-bg-color: #dfceff; 46 --canceled-bg-color: #c5ecff; 47 48 --block-background-color: #f5f5f5; 49 --dark-background-color: #555555; 50 --highlight-background-color: var(--warning-color); 51 52 --divider-color: #dddddd; 53 --active-color: #007bff; 54 --light-active-color: #d9edfc; 55 --delete-color: var(--failure-color); 56 --mdc-theme-primary: var(--active-color); 57 58 --light-background-color-1: hsl(206, 85%, 96%); 59 --light-background-color-2: hsl(206, 85%, 91%); 60 --light-background-color-3: hsl(206, 85%, 84%); 61 --light-background-color-4: hsl(206, 85%, 74%); 62 63 --expand-button-width: 155px; 64 65 /* These colors are for LUCI Bisection */ 66 --suspect-found-color: #5468ce; 67 }