-
Notifications
You must be signed in to change notification settings - Fork 206
Expand file tree
/
Copy pathscheme_tonal_spot.ts
More file actions
48 lines (46 loc) · 1.75 KB
/
scheme_tonal_spot.ts
File metadata and controls
48 lines (46 loc) · 1.75 KB
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
/**
* @license
* Copyright 2022 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import {DynamicScheme} from '../dynamiccolor/dynamic_scheme.js';
import {Variant} from '../dynamiccolor/variant.js';
import {Hct} from '../hct/hct.js';
import {TonalPalette} from '../palettes/tonal_palette.js';
import * as math from '../utils/math_utils.js';
/**
* A Dynamic Color theme with low to medium colorfulness and a Tertiary
* TonalPalette with a hue related to the source color.
*
* The default Material You theme on Android 12 and 13.
*/
export class SchemeTonalSpot extends DynamicScheme {
constructor(sourceColorHct: Hct, isDark: boolean, contrastLevel: number) {
super({
sourceColorHct,
variant: Variant.TONAL_SPOT,
contrastLevel,
isDark,
primaryPalette: TonalPalette.fromHueAndChroma(sourceColorHct.hue, 36.0),
secondaryPalette: TonalPalette.fromHueAndChroma(sourceColorHct.hue, 16.0),
tertiaryPalette: TonalPalette.fromHueAndChroma(
math.sanitizeDegreesDouble(sourceColorHct.hue + 60.0),
24.0,
),
neutralPalette: TonalPalette.fromHueAndChroma(sourceColorHct.hue, 6.0),
neutralVariantPalette:
TonalPalette.fromHueAndChroma(sourceColorHct.hue, 8.0),
});
}
}