@synerise/ds-core 1.11.0 → 1.11.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/dist/i18n/{en.json → en.json.d.ts} +4 -2
- package/dist/i18n/en.json.js +8 -0
- package/dist/i18n/{es.json → es.json.d.ts} +4 -2
- package/dist/i18n/es.json.js +8 -0
- package/dist/i18n/index.js +14 -11
- package/dist/i18n/{pl.json → pl.json.d.ts} +4 -2
- package/dist/i18n/pl.json.js +8 -0
- package/dist/i18n/{pt.json → pt.json.d.ts} +4 -2
- package/dist/i18n/pt.json.js +8 -0
- package/dist/js/DSProvider/DSProvider.d.ts +5 -6
- package/dist/js/DSProvider/DSProvider.js +36 -31
- package/dist/js/DSProvider/LocaleProvider/LocaleProvider.d.ts +2 -2
- package/dist/js/DSProvider/LocaleProvider/LocaleProvider.js +29 -38
- package/dist/js/DSProvider/LocaleProvider/LocaleProvider.types.d.ts +3 -3
- package/dist/js/DSProvider/LocaleProvider/LocaleProvider.types.js +1 -1
- package/dist/js/DSProvider/LocaleProvider/LocaleProvider.utils.d.ts +1 -1
- package/dist/js/DSProvider/LocaleProvider/LocaleProvider.utils.js +22 -19
- package/dist/js/DSProvider/LocaleProvider/antLocales.d.ts +6 -6
- package/dist/js/DSProvider/LocaleProvider/antLocales.js +16 -13
- package/dist/js/DSProvider/LocaleProvider/index.js +4 -1
- package/dist/js/DSProvider/ThemeProvider/ThemeProvider.d.ts +2 -2
- package/dist/js/DSProvider/ThemeProvider/ThemeProvider.js +14 -12
- package/dist/js/DSProvider/ThemeProvider/breakpoints.js +5 -2
- package/dist/js/DSProvider/ThemeProvider/index.js +4 -1
- package/dist/js/DSProvider/ThemeProvider/theme.d.ts +1 -1
- package/dist/js/DSProvider/ThemeProvider/theme.js +17 -17
- package/dist/js/DSProvider/ThemeProvider/variables.d.ts +8 -0
- package/dist/js/DSProvider/ThemeProvider/variables.js +531 -530
- package/dist/js/DSProvider/index.js +4 -1
- package/dist/js/DropdownContext/DropdownContext/DropdownContextProvider.d.ts +2 -2
- package/dist/js/DropdownContext/DropdownContext/DropdownContextProvider.js +11 -11
- package/dist/js/DropdownContext/DropdownContext.d.ts +1 -1
- package/dist/js/DropdownContext/DropdownContext.js +5 -2
- package/dist/js/DropdownContext/DropdownContextProvider.d.ts +2 -2
- package/dist/js/DropdownContext/DropdownContextProvider.js +11 -11
- package/dist/js/DropdownContext/index.js +8 -3
- package/dist/js/DropdownContext/useDropdown.d.ts +1 -1
- package/dist/js/DropdownContext/useDropdown.js +7 -4
- package/dist/js/data-format/components/FormattedDate.d.ts +4 -4
- package/dist/js/data-format/components/FormattedDate.js +23 -9
- package/dist/js/data-format/components/FormattedDateTime.d.ts +4 -4
- package/dist/js/data-format/components/FormattedDateTime.js +26 -12
- package/dist/js/data-format/components/FormattedNumber.d.ts +2 -2
- package/dist/js/data-format/components/FormattedNumber.js +23 -9
- package/dist/js/data-format/components/FormattedRelativeDateTime.d.ts +3 -3
- package/dist/js/data-format/components/FormattedRelativeDateTime.js +40 -21
- package/dist/js/data-format/components/FormattedTime.d.ts +4 -4
- package/dist/js/data-format/components/FormattedTime.js +26 -12
- package/dist/js/data-format/components/index.js +13 -5
- package/dist/js/data-format/constants/dataFormat.constants.d.ts +2 -2
- package/dist/js/data-format/constants/dataFormat.constants.js +85 -49
- package/dist/js/data-format/constants/dataFormatConfig.constants.d.ts +2 -2
- package/dist/js/data-format/constants/dataFormatConfig.constants.js +15 -8
- package/dist/js/data-format/constants/dateTimeParts.constants.d.ts +1 -1
- package/dist/js/data-format/constants/dateTimeParts.constants.js +10 -4
- package/dist/js/data-format/constants/index.js +48 -3
- package/dist/js/data-format/contexts/DataFormatConfigContext.d.ts +2 -2
- package/dist/js/data-format/contexts/DataFormatConfigContext.js +6 -3
- package/dist/js/data-format/contexts/DataFormatIntlsContext.d.ts +2 -2
- package/dist/js/data-format/contexts/DataFormatIntlsContext.js +7 -4
- package/dist/js/data-format/contexts/index.js +6 -2
- package/dist/js/data-format/hocs/withDataFormat.d.ts +2 -2
- package/dist/js/data-format/hocs/withDataFormat.js +23 -9
- package/dist/js/data-format/hooks/index.js +14 -6
- package/dist/js/data-format/hooks/useDataFormat.d.ts +1 -1
- package/dist/js/data-format/hooks/useDataFormat.js +93 -90
- package/dist/js/data-format/hooks/useDataFormatConfig.d.ts +1 -1
- package/dist/js/data-format/hooks/useDataFormatConfig.js +8 -4
- package/dist/js/data-format/hooks/useDataFormatIntls.d.ts +1 -1
- package/dist/js/data-format/hooks/useDataFormatIntls.js +8 -4
- package/dist/js/data-format/hooks/useDataFormatUtils.d.ts +4 -4
- package/dist/js/data-format/hooks/useDataFormatUtils.js +62 -63
- package/dist/js/data-format/hooks/useRelativeDateTimeUpdate.d.ts +2 -2
- package/dist/js/data-format/hooks/useRelativeDateTimeUpdate.js +19 -23
- package/dist/js/data-format/hooks/useSingleIntl.d.ts +1 -1
- package/dist/js/data-format/hooks/useSingleIntl.js +11 -8
- package/dist/js/data-format/index.js +83 -7
- package/dist/js/data-format/providers/DataFormatConfigProvider.d.ts +2 -2
- package/dist/js/data-format/providers/DataFormatConfigProvider.js +37 -26
- package/dist/js/data-format/types/dataFormat.types.d.ts +3 -3
- package/dist/js/data-format/types/dataFormat.types.js +1 -5
- package/dist/js/data-format/types/dataFormatConfig.types.d.ts +1 -1
- package/dist/js/data-format/types/dataFormatConfig.types.js +1 -2
- package/dist/js/data-format/types/dateTimeParts.types.js +1 -2
- package/dist/js/data-format/types/index.js +1 -1
- package/dist/js/data-format/utils/dataFormat.utils.d.ts +2 -2
- package/dist/js/data-format/utils/dataFormat.utils.js +82 -67
- package/dist/js/data-format/utils/dataFormatConfig.utils.d.ts +1 -1
- package/dist/js/data-format/utils/dataFormatConfig.utils.js +9 -8
- package/dist/js/data-format/utils/date.utils.d.ts +2 -2
- package/dist/js/data-format/utils/date.utils.js +25 -21
- package/dist/js/data-format/utils/dateTimeParts.utils.d.ts +2 -2
- package/dist/js/data-format/utils/dateTimeParts.utils.js +68 -52
- package/dist/js/data-format/utils/index.js +41 -5
- package/dist/js/data-format/utils/timeZone.utils.d.ts +1 -1
- package/dist/js/data-format/utils/timeZone.utils.js +59 -51
- package/dist/js/index.js +112 -7
- package/dist/js/mediaQuery/mediaQuery.d.ts +2 -2
- package/dist/js/mediaQuery/mediaQuery.js +15 -25
- package/dist/js/style.d.ts +0 -2
- package/dist/js/style.js +1 -2
- package/dist/js/testing/index.js +6 -2
- package/dist/js/testing/renderWithProvider/renderWithProvider.d.ts +4 -4
- package/dist/js/testing/renderWithProvider/renderWithProvider.js +35 -27
- package/dist/js/testing/sleep.js +6 -8
- package/dist/js/toaster/Toaster.d.ts +1 -1
- package/dist/js/toaster/Toaster.js +12 -8
- package/dist/js/toaster/Toaster.types.js +1 -1
- package/dist/js/toaster/constants.d.ts +1 -1
- package/dist/js/toaster/constants.js +7 -4
- package/dist/js/toaster/contexts/ToasterContext.d.ts +2 -2
- package/dist/js/toaster/contexts/ToasterContext.js +9 -5
- package/dist/js/toaster/hooks/useToaster.d.ts +1 -1
- package/dist/js/toaster/hooks/useToaster.js +7 -4
- package/dist/js/toaster/index.js +12 -5
- package/dist/js/toaster/providers/ToasterProvider.d.ts +2 -2
- package/dist/js/toaster/providers/ToasterProvider.js +17 -17
- package/package.json +11 -13
- package/dist/js/testing/renderWithProvider/renderWithProvider.spec.d.ts +0 -1
- package/dist/style/colors.less +0 -137
- package/dist/style/config.less +0 -521
- package/dist/style/core.less +0 -55
- package/dist/style/variables.less +0 -2
- /package/dist/{style/variables.css → assets/style/core-tn0RQdqM.css} +0 -0
|
@@ -1,28 +1,36 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
import
|
|
5
|
-
import
|
|
6
|
-
import
|
|
7
|
-
import
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import { render } from "@testing-library/react";
|
|
3
|
+
import DSProvider from "../../DSProvider/DSProvider.js";
|
|
4
|
+
import "../../data-format/constants/dataFormatConfig.constants.js";
|
|
5
|
+
import "../../data-format/contexts/DataFormatConfigContext.js";
|
|
6
|
+
import "../../data-format/contexts/DataFormatIntlsContext.js";
|
|
7
|
+
import "react";
|
|
8
|
+
import "dayjs";
|
|
9
|
+
import "moment";
|
|
10
|
+
import { getDataFormatConfigFromNotation } from "../../data-format/utils/dataFormatConfig.utils.js";
|
|
11
|
+
import "../../data-format/utils/timeZone.utils.js";
|
|
12
|
+
import "../../data-format/utils/dataFormat.utils.js";
|
|
13
|
+
import "react-intl";
|
|
14
|
+
const renderWithProvider = (node, options, props) => {
|
|
15
|
+
const {
|
|
16
|
+
notation,
|
|
17
|
+
applyTimeZoneOffset,
|
|
18
|
+
...providerProps
|
|
19
|
+
} = props || {};
|
|
20
|
+
const dataFormatConfigProps = applyTimeZoneOffset !== void 0 || notation ? {
|
|
21
|
+
...notation ? getDataFormatConfigFromNotation(notation) : {},
|
|
22
|
+
applyTimeZoneOffset
|
|
23
|
+
} : {};
|
|
24
|
+
const rendered = render(/* @__PURE__ */ jsx(DSProvider, { onErrorIntl: () => {
|
|
25
|
+
}, dataFormatConfig: dataFormatConfigProps, ...providerProps, children: node }), options);
|
|
26
|
+
return {
|
|
27
|
+
...rendered,
|
|
28
|
+
rerender: (ui, opt) => renderWithProvider(ui, {
|
|
29
|
+
container: rendered.container,
|
|
30
|
+
...opt
|
|
31
|
+
})
|
|
32
|
+
};
|
|
33
|
+
};
|
|
34
|
+
export {
|
|
35
|
+
renderWithProvider as default
|
|
27
36
|
};
|
|
28
|
-
export default _renderWithProvider;
|
package/dist/js/testing/sleep.js
CHANGED
|
@@ -1,8 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
});
|
|
8
|
-
};
|
|
1
|
+
const sleep = (duration = 1e3) => {
|
|
2
|
+
return new Promise((resolve) => setTimeout(resolve, duration));
|
|
3
|
+
};
|
|
4
|
+
export {
|
|
5
|
+
sleep
|
|
6
|
+
};
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import React from 'react';
|
|
1
|
+
import { default as React } from 'react';
|
|
2
2
|
export declare const Toaster: () => React.JSX.Element;
|
|
@@ -1,8 +1,12 @@
|
|
|
1
|
-
import
|
|
2
|
-
import { Toaster as
|
|
3
|
-
import { useToaster } from
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
options
|
|
7
|
-
|
|
8
|
-
};
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import { Toaster as Toaster$1 } from "react-hot-toast";
|
|
3
|
+
import { useToaster } from "./hooks/useToaster.js";
|
|
4
|
+
const Toaster = () => {
|
|
5
|
+
const {
|
|
6
|
+
options
|
|
7
|
+
} = useToaster();
|
|
8
|
+
return /* @__PURE__ */ jsx(Toaster$1, { ...options });
|
|
9
|
+
};
|
|
10
|
+
export {
|
|
11
|
+
Toaster
|
|
12
|
+
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ToasterProps } from './Toaster.types';
|
|
2
2
|
export declare const TOASTER_DEFAULTS: ToasterProps;
|
|
@@ -1,11 +1,14 @@
|
|
|
1
|
-
|
|
2
|
-
position:
|
|
1
|
+
const TOASTER_DEFAULTS = {
|
|
2
|
+
position: "bottom-left",
|
|
3
3
|
reverseOrder: false,
|
|
4
4
|
toastOptions: {
|
|
5
5
|
removeDelay: 200
|
|
6
6
|
},
|
|
7
7
|
gutter: 8,
|
|
8
8
|
containerStyle: {
|
|
9
|
-
padding:
|
|
9
|
+
padding: "24px"
|
|
10
10
|
}
|
|
11
|
-
};
|
|
11
|
+
};
|
|
12
|
+
export {
|
|
13
|
+
TOASTER_DEFAULTS
|
|
14
|
+
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ToasterProps } from '../Toaster.types';
|
|
2
2
|
export type ToastContextType = {
|
|
3
3
|
options: Partial<ToasterProps>;
|
|
4
4
|
setOptions: (props: Partial<ToasterProps>) => void;
|
|
5
5
|
};
|
|
6
|
-
export declare const ToasterContext: import(
|
|
6
|
+
export declare const ToasterContext: import('react').Context<ToastContextType>;
|
|
@@ -1,6 +1,10 @@
|
|
|
1
|
-
import { createContext } from
|
|
2
|
-
import { TOASTER_DEFAULTS } from
|
|
3
|
-
|
|
1
|
+
import { createContext } from "react";
|
|
2
|
+
import { TOASTER_DEFAULTS } from "../constants.js";
|
|
3
|
+
const ToasterContext = createContext({
|
|
4
4
|
options: TOASTER_DEFAULTS,
|
|
5
|
-
setOptions:
|
|
6
|
-
}
|
|
5
|
+
setOptions: () => {
|
|
6
|
+
}
|
|
7
|
+
});
|
|
8
|
+
export {
|
|
9
|
+
ToasterContext
|
|
10
|
+
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const useToaster: () => import(
|
|
1
|
+
export declare const useToaster: () => import('../contexts/ToasterContext').ToastContextType;
|
|
@@ -1,5 +1,8 @@
|
|
|
1
|
-
import { useContext } from
|
|
2
|
-
import { ToasterContext } from
|
|
3
|
-
|
|
1
|
+
import { useContext } from "react";
|
|
2
|
+
import { ToasterContext } from "../contexts/ToasterContext.js";
|
|
3
|
+
const useToaster = () => {
|
|
4
4
|
return useContext(ToasterContext);
|
|
5
|
-
};
|
|
5
|
+
};
|
|
6
|
+
export {
|
|
7
|
+
useToaster
|
|
8
|
+
};
|
package/dist/js/toaster/index.js
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
import { Toaster } from "./Toaster.js";
|
|
2
|
+
import { TOASTER_DEFAULTS } from "./constants.js";
|
|
3
|
+
import { ToasterContext } from "./contexts/ToasterContext.js";
|
|
4
|
+
import { useToaster } from "./hooks/useToaster.js";
|
|
5
|
+
import { ToasterProvider } from "./providers/ToasterProvider.js";
|
|
6
|
+
export {
|
|
7
|
+
TOASTER_DEFAULTS,
|
|
8
|
+
ToasterContext,
|
|
9
|
+
ToasterProvider,
|
|
10
|
+
Toaster as default,
|
|
11
|
+
useToaster
|
|
12
|
+
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import React,
|
|
2
|
-
import
|
|
1
|
+
import { default as React, ReactNode } from 'react';
|
|
2
|
+
import { ToasterProps } from '../Toaster.types';
|
|
3
3
|
export declare const ToasterProvider: ({ children, toasterProps, }: {
|
|
4
4
|
children: ReactNode;
|
|
5
5
|
toasterProps: Partial<ToasterProps>;
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
import
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
};
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import { useState } from "react";
|
|
3
|
+
import { TOASTER_DEFAULTS } from "../constants.js";
|
|
4
|
+
import { ToasterContext } from "../contexts/ToasterContext.js";
|
|
5
|
+
const ToasterProvider = ({
|
|
6
|
+
children,
|
|
7
|
+
toasterProps = TOASTER_DEFAULTS
|
|
8
|
+
}) => {
|
|
9
|
+
const [options, setOptions] = useState(toasterProps);
|
|
10
|
+
return /* @__PURE__ */ jsx(ToasterContext.Provider, { value: {
|
|
11
|
+
options,
|
|
12
|
+
setOptions
|
|
13
|
+
}, children });
|
|
14
|
+
};
|
|
15
|
+
export {
|
|
16
|
+
ToasterProvider
|
|
17
|
+
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-core",
|
|
3
|
-
"version": "1.11.
|
|
3
|
+
"version": "1.11.2",
|
|
4
4
|
"description": "Core Components for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "synerise/synerise-design",
|
|
@@ -17,20 +17,17 @@
|
|
|
17
17
|
"access": "public"
|
|
18
18
|
},
|
|
19
19
|
"scripts": {
|
|
20
|
-
"build": "
|
|
21
|
-
"build:
|
|
22
|
-
"build:js": "babel --delete-dir-on-start --root-mode upward src --out-dir dist --extensions '.js,.ts,.tsx'",
|
|
23
|
-
"build:watch": "pnpm run build:js -- --watch",
|
|
20
|
+
"build": "vite build",
|
|
21
|
+
"build:watch": "vite build --watch",
|
|
24
22
|
"copy": "node ./build/copy.js",
|
|
25
|
-
"defs": "tsc --declaration --outDir dist/ --emitDeclarationOnly",
|
|
26
23
|
"pack:ci": "pnpm pack --pack-destination ../../storybook/storybook-static/static",
|
|
27
24
|
"prepublish": "pnpm run build",
|
|
28
|
-
"test": "
|
|
29
|
-
"test:timezone-ny": "TZ=America/New_York
|
|
30
|
-
"test:timezone-utc": "TZ=UTC
|
|
31
|
-
"test:timezone-waw": "TZ=Europe/Warsaw
|
|
25
|
+
"test": "vitest run && pnpm test:timezones",
|
|
26
|
+
"test:timezone-ny": "TZ=America/New_York vitest run -t TimezoneTesting",
|
|
27
|
+
"test:timezone-utc": "TZ=UTC vitest run -t TimezoneTesting",
|
|
28
|
+
"test:timezone-waw": "TZ=Europe/Warsaw vitest run -t TimezoneTesting",
|
|
32
29
|
"test:timezones": "pnpm test:timezone-utc && pnpm test:timezone-ny && pnpm test:timezone-waw",
|
|
33
|
-
"test:watch": "
|
|
30
|
+
"test:watch": "vitest",
|
|
34
31
|
"types": "tsc --noEmit",
|
|
35
32
|
"check:circular-dependencies": "madge --circular --extensions ts,tsx,js,jsx --ts-config tsconfig.json src/ --exclude '/dist/'",
|
|
36
33
|
"upgrade:ds": "ncu -f \"@synerise/ds-*\" -u",
|
|
@@ -48,7 +45,8 @@
|
|
|
48
45
|
"antd": "4.24.16",
|
|
49
46
|
"react": ">=16.9.0 <= 18.3.1",
|
|
50
47
|
"react-intl": ">=3.12.0 <= 6.8",
|
|
51
|
-
"styled-components": "^5.3.3"
|
|
48
|
+
"styled-components": "^5.3.3",
|
|
49
|
+
"vitest": "4"
|
|
52
50
|
},
|
|
53
51
|
"devDependencies": {
|
|
54
52
|
"@formatjs/icu-messageformat-parser": "^2.11.1",
|
|
@@ -57,5 +55,5 @@
|
|
|
57
55
|
"hex-rgb": "^5.0.0",
|
|
58
56
|
"less-vars-to-js": "^1.3.0"
|
|
59
57
|
},
|
|
60
|
-
"gitHead": "
|
|
58
|
+
"gitHead": "ce3c6d75efe8573a2b274853636f959b75a6cd32"
|
|
61
59
|
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
package/dist/style/colors.less
DELETED
|
@@ -1,137 +0,0 @@
|
|
|
1
|
-
/* Generated by Zeplin
|
|
2
|
-
Copyright (C) 2019 - present Zeplin
|
|
3
|
-
|
|
4
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
-
you may not use this file except in compliance with the License.
|
|
6
|
-
You may obtain a copy of the License at
|
|
7
|
-
|
|
8
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
-
|
|
10
|
-
Unless required by applicable law or agreed to in writing, software
|
|
11
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
-
See the License for the specific language governing permissions and
|
|
14
|
-
limitations under the License.
|
|
15
|
-
*/
|
|
16
|
-
|
|
17
|
-
@red-900: #520004;
|
|
18
|
-
@red-800: #87020b;
|
|
19
|
-
@red-700: #cf1413;
|
|
20
|
-
@red-600: #f52922;
|
|
21
|
-
@red-500: #ff5a4d;
|
|
22
|
-
@red-400: #ff8475;
|
|
23
|
-
@red-300: #ffab9e;
|
|
24
|
-
@red-200: #ffd1c7;
|
|
25
|
-
@red-100: #ffece8;
|
|
26
|
-
@red-050: #fff6f4;
|
|
27
|
-
@green-900: #0d2b00;
|
|
28
|
-
@green-800: #2a7003;
|
|
29
|
-
@green-700: #399903;
|
|
30
|
-
@green-600: #54cb0b;
|
|
31
|
-
@green-500: #76dc25;
|
|
32
|
-
@green-400: #9aed45;
|
|
33
|
-
@green-300: #c5ff7e;
|
|
34
|
-
@green-200: #d9ffa0;
|
|
35
|
-
@green-100: #ecffce;
|
|
36
|
-
@green-050: #f9ffed;
|
|
37
|
-
@grey-900: #232936;
|
|
38
|
-
@grey-800: #384350;
|
|
39
|
-
@grey-700: #57616d;
|
|
40
|
-
@grey-600: #6a7580;
|
|
41
|
-
@grey-500: #949ea6;
|
|
42
|
-
@grey-400: #b5bdc3;
|
|
43
|
-
@grey-300: #dbe0e3;
|
|
44
|
-
@grey-200: #e9edee;
|
|
45
|
-
@grey-100: #f3f5f6;
|
|
46
|
-
@grey-050: #f9fafb;
|
|
47
|
-
@yellow-900: #5e3d00;
|
|
48
|
-
@yellow-800: #bf8300;
|
|
49
|
-
@yellow-700: #eda600;
|
|
50
|
-
@yellow-600: #fab700;
|
|
51
|
-
@yellow-500: #ffc300;
|
|
52
|
-
@yellow-400: #ffda24;
|
|
53
|
-
@yellow-300: #ffe873;
|
|
54
|
-
@yellow-200: #fff8d7;
|
|
55
|
-
@yellow-100: #fffae3;
|
|
56
|
-
@yellow-050: #fffcf0;
|
|
57
|
-
@blue-900: #01026e;
|
|
58
|
-
@blue-800: #00039e;
|
|
59
|
-
@blue-700: #0044d9;
|
|
60
|
-
@blue-600: #0b68ff;
|
|
61
|
-
@blue-500: #238afe;
|
|
62
|
-
@blue-400: #4da7fe;
|
|
63
|
-
@blue-300: #8bcaff;
|
|
64
|
-
@blue-200: #bce1ff;
|
|
65
|
-
@blue-100: #d9eeff;
|
|
66
|
-
@blue-050: #f4faff;
|
|
67
|
-
@pink-900: #5d001c;
|
|
68
|
-
@pink-800: #a80732;
|
|
69
|
-
@pink-700: #d41640;
|
|
70
|
-
@pink-600: #ff2f52;
|
|
71
|
-
@pink-500: #ff4d67;
|
|
72
|
-
@pink-400: #ff7586;
|
|
73
|
-
@pink-300: #fe9da5;
|
|
74
|
-
@pink-200: #ffc9ce;
|
|
75
|
-
@pink-100: #ffebeb;
|
|
76
|
-
@pink-050: #fff5f5;
|
|
77
|
-
@mars-900: #770b05;
|
|
78
|
-
@mars-800: #c41b03;
|
|
79
|
-
@mars-700: #e43812;
|
|
80
|
-
@mars-600: #ff5831;
|
|
81
|
-
@mars-500: #ff6c4d;
|
|
82
|
-
@mars-400: #ff8770;
|
|
83
|
-
@mars-300: #ffa999;
|
|
84
|
-
@mars-200: #ffcbc1;
|
|
85
|
-
@mars-100: #ffe9e9;
|
|
86
|
-
@mars-050: #fff3f3;
|
|
87
|
-
@orange-900: #5f0900;
|
|
88
|
-
@orange-800: #cc3a01;
|
|
89
|
-
@orange-700: #ed5603;
|
|
90
|
-
@orange-600: #f97600;
|
|
91
|
-
@orange-500: #fd9f05;
|
|
92
|
-
@orange-400: #ffba24;
|
|
93
|
-
@orange-300: #ffd373;
|
|
94
|
-
@orange-200: #ffe3a6;
|
|
95
|
-
@orange-100: #fff5e0;
|
|
96
|
-
@orange-050: #fffaf0;
|
|
97
|
-
@fern-900: #002b0d;
|
|
98
|
-
@fern-800: #03701f;
|
|
99
|
-
@fern-700: #039929;
|
|
100
|
-
@fern-600: #0bcb38;
|
|
101
|
-
@fern-500: #25dc44;
|
|
102
|
-
@fern-400: #45ed58;
|
|
103
|
-
@fern-300: #7eff87;
|
|
104
|
-
@fern-200: #a0ffa2;
|
|
105
|
-
@fern-100: #ceffce;
|
|
106
|
-
@fern-050: #edffed;
|
|
107
|
-
@cyan-900: #002429;
|
|
108
|
-
@cyan-800: #00494f;
|
|
109
|
-
@cyan-700: #007075;
|
|
110
|
-
@cyan-600: #089b9c;
|
|
111
|
-
@cyan-500: #13c2bc;
|
|
112
|
-
@cyan-400: #36cfc4;
|
|
113
|
-
@cyan-300: #6cdfd4;
|
|
114
|
-
@cyan-200: #87e8db;
|
|
115
|
-
@cyan-100: #b5f5ea;
|
|
116
|
-
@cyan-050: #e6fffa;
|
|
117
|
-
@purple-900: #10033d;
|
|
118
|
-
@purple-800: #1f0763;
|
|
119
|
-
@purple-700: #35108a;
|
|
120
|
-
@purple-600: #4e1daf;
|
|
121
|
-
@purple-500: #6d2ed3;
|
|
122
|
-
@purple-400: #8e54e0;
|
|
123
|
-
@purple-300: #b88cee;
|
|
124
|
-
@purple-200: #d1adf7;
|
|
125
|
-
@purple-100: #eedbff;
|
|
126
|
-
@purple-050: #f9f0ff;
|
|
127
|
-
@violet-900: #3b0352;
|
|
128
|
-
@violet-800: #5b0678;
|
|
129
|
-
@violet-700: #7e109e;
|
|
130
|
-
@violet-600: #a41dc4;
|
|
131
|
-
@violet-500: #ce2feb;
|
|
132
|
-
@violet-400: #e459f7;
|
|
133
|
-
@violet-300: #f585ff;
|
|
134
|
-
@violet-200: #fbadff;
|
|
135
|
-
@violet-100: #fed6ff;
|
|
136
|
-
@violet-050: #fff0ff;
|
|
137
|
-
@white: #ffffff;
|