Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified tensorboard/logo/favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion tensorboard/webapp/core/views/page_title_component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import {
} from '@angular/core';

function setDocumentTitle(title: string) {
document.title = title;
document.title = 'PAIA BOARD';
}

const utils = {
Expand Down
2 changes: 1 addition & 1 deletion tensorboard/webapp/header/header_component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import {Component} from '@angular/core';
selector: 'app-header',
template: `
<mat-toolbar>
<span class="brand">TensorBoard</span>
<span class="brand">PAIA BOARD</span>
<plugin-selector class="plugins"></plugin-selector>
<app-header-dark-mode-toggle></app-header-dark-mode-toggle>
<app-header-reload></app-header-reload>
Expand Down
2 changes: 1 addition & 1 deletion tensorboard/webapp/index_polymer3.uninlined.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
limitations under the License.
-->
<meta charset="utf-8" />
<title>TensorBoard</title>
<title>PAIA Board</title>
<link rel="shortcut icon" href="%TENSORBOARD_FAVICON_URI%" />
<link rel="apple-touch-icon" href="%TENSORBOARD_FAVICON_URI%" />

Expand Down
28 changes: 19 additions & 9 deletions tensorboard/webapp/theme/_tb_palette.scss
Original file line number Diff line number Diff line change
Expand Up @@ -39,21 +39,31 @@ $tf-slate: (
),
);


/* The tf-orange palette predates the migration to Angular and is not
well-defined and is not well-mapped to the tf-slate palette. It could use
more work. One source to consider is tensorboard-color.html, which contains
several orange values, but only one of them (--tb-orange-strong) is used
widely. */
$tf-orange: (
100: matm2.get-color-from-palette(matm2var.$orange-palette, 100),
200: matm2.get-color-from-palette(matm2var.$orange-palette, 200),
300: matm2.get-color-from-palette(matm2var.$orange-palette, 300),
400: matm2.get-color-from-palette(matm2var.$orange-palette, 400),
500: matm2.get-color-from-palette(matm2var.$orange-palette, 500),
600: matm2.get-color-from-palette(matm2var.$orange-palette, 600),
700: matm2.get-color-from-palette(matm2var.$orange-palette, 700),
800: matm2.get-color-from-palette(matm2var.$orange-palette, 800),
900: matm2.get-color-from-palette(matm2var.$orange-palette, 900),
100: #DEF3FF,
200: rgb(205, 228, 251),
300: #b6e1f9,
400: #00A3FF,
500: #1976D2,
600: #1768b9,
700: #00A3FF,
800: #00308F,
900: #001F63,
// 100: matm2.get-color-from-palette(matm2var.$orange-palette, 100),
// 200: matm2.get-color-from-palette(matm2var.$orange-palette, 200),
// 300: matm2.get-color-from-palette(matm2var.$orange-palette, 300),
// 400: matm2.get-color-from-palette(matm2var.$orange-palette, 400),
// 500: matm2.get-color-from-palette(matm2var.$orange-palette, 500),
// 600: matm2.get-color-from-palette(matm2var.$orange-palette, 600),
// 700: matm2.get-color-from-palette(matm2var.$orange-palette, 700),
// 800: matm2.get-color-from-palette(matm2var.$orange-palette, 800),
// 900: matm2.get-color-from-palette(matm2var.$orange-palette, 900),
contrast: (
100: rgba(black, 0.87),
200: rgba(black, 0.87),
Expand Down
2 changes: 1 addition & 1 deletion tensorboard/webapp/theme/_variable.scss
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ limitations under the License.
@use '@angular/material' as matm2var;
@import 'tensorboard/webapp/theme/tb_palette';

$tb-primary: matm2.define-palette($tf-orange, 700, 400, 800);
$tb-primary: matm2.define-palette($tf-orange, 400, 500, 800);
$tb-accent: matm2.define-palette($tf-orange);
$tb-warn: matm2.define-palette(matm2var.$red-palette);

Expand Down