This commit is contained in:
Chris Trevino 2022-02-09 13:24:02 -08:00
Родитель fd2ebedd21
Коммит bbf6184822
6 изменённых файлов: 32 добавлений и 8 удалений

Просмотреть файл

@ -13,10 +13,9 @@
"version": "yarn workspaces foreach --exclude '@thematic/root' -iv version -d",
"lint": "essex lint --fix --strict",
"prettify:": "essex prettify",
"test": "jest",
"test_coverage": "jest --coverage",
"jest_coverage": "jest --coverage",
"git-is-clean": "essex git-is-clean",
"ci": "run-s lint build bundle test_coverage git-is-clean",
"ci": "run-s lint build bundle jest_coverage git-is-clean",
"release": "run-s clean build publish"
},
"workspaces": {

Просмотреть файл

@ -1,4 +1,8 @@
export default {
/*!
* Copyright (c) Microsoft. All rights reserved.
* Licensed under the MIT license. See LICENSE file in the project.
*/
const autumnTheme = {
name: 'Autumn',
params: {
accentHue: 50,
@ -9,3 +13,4 @@ export default {
nominalHueStep: 10,
},
}
export default autumnTheme

Просмотреть файл

@ -1,4 +1,8 @@
export default {
/*!
* Copyright (c) Microsoft. All rights reserved.
* Licensed under the MIT license. See LICENSE file in the project.
*/
const defaultTheme = {
name: 'Default',
params: {
accentHue: 252,
@ -9,3 +13,4 @@ export default {
nominalHueStep: 10,
},
}
export default defaultTheme

Просмотреть файл

@ -1,4 +1,8 @@
export default {
/*!
* Copyright (c) Microsoft. All rights reserved.
* Licensed under the MIT license. See LICENSE file in the project.
*/
const themeDefaults = {
chart: {
backgroundColor: 'none',
padding: 4,
@ -125,3 +129,4 @@ export default {
strokeOpacity: 1,
},
}
export default themeDefaults

Просмотреть файл

@ -1,4 +1,8 @@
export default {
/*!
* Copyright (c) Microsoft. All rights reserved.
* Licensed under the MIT license. See LICENSE file in the project.
*/
const metalTheme = {
name: 'Metal',
params: {
accentHue: 242,
@ -9,3 +13,4 @@ export default {
nominalHueStep: 21,
},
}
export default metalTheme

Просмотреть файл

@ -1,4 +1,8 @@
export default {
/*!
* Copyright (c) Microsoft. All rights reserved.
* Licensed under the MIT license. See LICENSE file in the project.
*/
const oceanTheme = {
name: 'Ocean',
params: {
accentHue: 215,
@ -9,3 +13,4 @@ export default {
nominalHueStep: 0,
},
}
export default oceanTheme