@kvdbil/components 15.1.4 → 16.0.0

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.
Files changed (87) hide show
  1. package/cjs/ColorCard.js +7 -7
  2. package/cjs/components/Accordion/index.js +10 -10
  3. package/cjs/components/Breadcrumbs/BreadcrumbsItem.js +4 -4
  4. package/cjs/components/Button/index.js +18 -16
  5. package/cjs/components/Button/styles.js +1 -1
  6. package/cjs/components/Card/index.js +6 -6
  7. package/cjs/components/CheckBox/index.js +9 -9
  8. package/cjs/components/Chip/index.js +4 -3
  9. package/cjs/components/Chip/styles.js +1 -1
  10. package/cjs/components/DayPicker/DayPickerNavBar.js +8 -8
  11. package/cjs/components/DayPicker/style.js +9 -9
  12. package/cjs/components/EditRow/index.js +3 -3
  13. package/cjs/components/FieldLabel.js +2 -2
  14. package/cjs/components/Icon/index.js +3 -3
  15. package/cjs/components/IconButton.js +10 -10
  16. package/cjs/components/Logo/LogoEn.js +1 -1
  17. package/cjs/components/Logo/LogoSv.js +1 -1
  18. package/cjs/components/NotificationButton/index.js +3 -3
  19. package/cjs/components/RadioButton/index.js +6 -6
  20. package/cjs/components/Select/index.js +10 -10
  21. package/cjs/components/Snackbar/index.js +17 -17
  22. package/cjs/components/Spinner/index.js +9 -9
  23. package/cjs/components/SpinnerThin/index.js +5 -5
  24. package/cjs/components/Switcher/index.js +9 -6
  25. package/cjs/components/Table/index.js +6 -6
  26. package/cjs/components/Tabs/Tab.js +2 -1
  27. package/cjs/components/Tabs/Tabs.js +2 -2
  28. package/cjs/components/Tabs/index.js +1 -1
  29. package/cjs/components/TextArea/index.js +15 -15
  30. package/cjs/components/Textfield/index.js +7 -7
  31. package/cjs/components/TimePicker/index.js +2 -2
  32. package/cjs/components/Toggle/index.js +2 -2
  33. package/cjs/index.js +1 -1
  34. package/cjs/theme.js +1 -1
  35. package/cjs/typography/BodyText/index.js +25 -19
  36. package/cjs/utils/utils.js +2 -2
  37. package/esm/ColorCard.js +7 -7
  38. package/esm/components/Accordion/index.js +10 -10
  39. package/esm/components/Breadcrumbs/BreadcrumbsItem.js +6 -6
  40. package/esm/components/Button/index.js +17 -15
  41. package/esm/components/Button/styles.js +30 -30
  42. package/esm/components/Card/index.js +8 -8
  43. package/esm/components/CheckBox/index.js +9 -9
  44. package/esm/components/Chip/index.js +13 -12
  45. package/esm/components/Chip/styles.js +1 -1
  46. package/esm/components/DayPicker/DayPickerNavBar.js +9 -9
  47. package/esm/components/DayPicker/style.js +9 -9
  48. package/esm/components/EditRow/index.js +3 -3
  49. package/esm/components/FieldLabel.js +14 -14
  50. package/esm/components/Icon/index.js +4 -4
  51. package/esm/components/IconButton.js +14 -14
  52. package/esm/components/Logo/LogoEn.js +1 -1
  53. package/esm/components/Logo/LogoSv.js +1 -1
  54. package/esm/components/NotificationButton/index.js +1 -1
  55. package/esm/components/RadioButton/index.js +16 -16
  56. package/esm/components/Select/index.js +9 -9
  57. package/esm/components/Snackbar/index.js +19 -19
  58. package/esm/components/Spinner/index.js +5 -5
  59. package/esm/components/SpinnerThin/index.js +4 -4
  60. package/esm/components/Switcher/index.js +7 -4
  61. package/esm/components/Table/index.js +9 -9
  62. package/esm/components/Tabs/Tab.js +4 -3
  63. package/esm/components/Tabs/Tabs.js +6 -6
  64. package/esm/components/Tabs/index.js +1 -1
  65. package/esm/components/TextArea/index.js +25 -25
  66. package/esm/components/Textfield/index.js +19 -19
  67. package/esm/components/TimePicker/index.js +2 -2
  68. package/esm/components/Toggle/index.js +4 -4
  69. package/esm/index.js +1 -1
  70. package/esm/theme.js +1 -1
  71. package/esm/typography/BodyText/index.js +33 -27
  72. package/esm/utils/utils.js +2 -2
  73. package/package.json +2 -2
  74. package/package.json.tmp +2 -2
  75. package/types/Types.d.ts +6 -4
  76. package/types/components/Button/index.d.ts +2 -2
  77. package/types/components/Button/styles.d.ts +12 -6
  78. package/types/components/Chip/index.d.ts +2 -2
  79. package/types/components/Chip/styles.d.ts +4 -4
  80. package/types/components/IconButton.d.ts +3 -3
  81. package/types/components/Spinner/index.d.ts +6 -6
  82. package/types/components/Switcher/index.d.ts +1 -1
  83. package/types/components/Tabs/Tabs.d.ts +1 -1
  84. package/types/index.d.ts +1 -1
  85. package/types/theme.d.ts +79 -55
  86. package/types/typography/BodyText/index.d.ts +2 -0
  87. package/types/utils/utils.d.ts +79 -0
@@ -1,8 +1,8 @@
1
1
  import React, { ComponentPropsWithRef, CSSProperties, ReactNode } from 'react';
2
- import { Color, Variant, Size, ColorShade } from '../../Types';
2
+ import { ColorWithNeutral, Variant, Size, ColorShade } from '../../Types';
3
3
  interface Props {
4
4
  size?: Size;
5
- color?: Color;
5
+ color: ColorWithNeutral;
6
6
  colorShade?: ColorShade;
7
7
  variant?: Variant;
8
8
  fullWidth?: boolean;
@@ -1,17 +1,23 @@
1
1
  import { Theme } from '../../theme';
2
- import { Color, ColorShade, Variant } from '../../Types';
2
+ import { ColorWithNeutral, ColorShade, Variant } from '../../Types';
3
+ type ColorStylesProp = {
4
+ theme: Theme;
5
+ $color: ColorWithNeutral;
6
+ $colorShade: ColorShade;
7
+ $variant: Variant;
8
+ };
3
9
  export declare const fontSizes: {
4
- smaller: import("styled-components").RuleSet<object>;
5
10
  small: import("styled-components").RuleSet<object>;
6
11
  regular: import("styled-components").RuleSet<object>;
7
12
  large: import("styled-components").RuleSet<object>;
8
13
  };
9
- export declare const smallerAndSmallSizeStyles: () => string;
14
+ export declare const smallSizeStyles: () => string;
10
15
  export declare const regularSizeStyles: () => string;
11
16
  export declare const largeSizeStyles: () => string;
12
17
  export declare const disabledColorStyles: (theme: Theme, variant: Variant) => string;
13
18
  export declare const colorStyles: {
14
- solid: (theme: Theme, color: Color, colorShade: ColorShade) => string;
15
- outline: (theme: Theme, color: Color) => string;
16
- flat: (theme: Theme, color: Color) => string;
19
+ solid: ({ theme, $color, $colorShade }: ColorStylesProp) => string;
20
+ outline: ({ theme, $color }: ColorStylesProp) => string;
21
+ flat: ({ theme, $color }: ColorStylesProp) => string;
17
22
  };
23
+ export {};
@@ -1,8 +1,8 @@
1
1
  import React from 'react';
2
2
  import { ComponentType, MouseEvent, ReactNode } from 'react';
3
3
  import { DefaultTheme } from 'styled-components';
4
- import { Color, Size, Variant } from '../../Types';
5
- export type ChipColor = Color | 'neutralLight';
4
+ import { ColorWithNeutral, Size, Variant } from '../../Types';
5
+ export type ChipColor = ColorWithNeutral | 'neutralLight';
6
6
  export interface ChipProps {
7
7
  color?: ChipColor;
8
8
  children: ReactNode;
@@ -7,8 +7,8 @@ export declare const getBorderColor: ({ color, isDisabled, variant, theme, }: It
7
7
  export declare const getCursorType: ({ isDisabled, isClickable, isDeletable, }: ItemProps) => "auto" | "not-allowed" | "pointer";
8
8
  export declare const getHoverBackgroundColor: ({ variant, color, theme, }: ItemProps) => string;
9
9
  export declare const getHoverBorderColor: ({ variant, color, theme }: ItemProps) => string;
10
- export declare const getHoverColor: ({ variant, color, theme }: ItemProps) => "#e8a100" | "#007069" | "#a63640" | "#004773" | "#269940" | "#1a2030" | "#ffffff";
11
- export declare const getSufixHoverBackgroundColor: ({ variant, color, isClickable, isDisabled, theme, }: ItemProps) => "#d98500" | "#e8a100" | "#00474d" | "#007069" | "#5e2636" | "#a63640" | "#17395d" | "#004773" | "#175c36" | "#269940" | "#1a2030" | "#f2f2f2" | "#a3a6a8" | "#d9d9d6" | "#e8e8e8";
12
- export declare const getActiveBackgroundColor: ({ color, variant, isDisabled, theme, }: ItemProps) => "#f7cf57" | "#6bb8a6" | "#f5968a" | "#57c2ff" | "#91e5a1" | "#474d59" | "#ffffff" | "transparent";
10
+ export declare const getHoverColor: ({ variant, color, theme }: ItemProps) => "#e8a100" | "#1b6359" | "#9c333c" | "#005e8c" | "#006629" | "#aa2228" | "#8f367f" | "#1a2030" | "#ffffff" | "#000000";
11
+ export declare const getSufixHoverBackgroundColor: ({ variant, color, isClickable, isDisabled, theme, }: ItemProps) => "#c48900" | "#e8a100" | "#00474d" | "#1b6359" | "#5e2636" | "#9c333c" | "#004773" | "#005e8c" | "#0b4222" | "#006629" | "#841c24" | "#aa2228" | "#42214f" | "#8f367f" | "#f2f2f2" | "#000000" | "#a4a6ac" | "#d1d2d6" | "#e8e9ea";
12
+ export declare const getActiveBackgroundColor: ({ color, variant, isDisabled, theme, }: ItemProps) => "#f7cf57" | "#32bfaf" | "#f59085" | "#3bb7e2" | "#59d771" | "#ff8888" | "#e28dde" | "#ffffff" | "#8d8f97" | "transparent";
13
13
  export declare const getActiveBorderColor: ({ variant, color, theme }: ItemProps) => string;
14
- export declare const getActiveColor: ({ variant, color, theme }: ItemProps) => "#f7cf57" | "#6bb8a6" | "#f5968a" | "#57c2ff" | "#91e5a1" | "#1a2030" | "#474d59" | "#ffffff";
14
+ export declare const getActiveColor: ({ variant, color, theme }: ItemProps) => "#f7cf57" | "#32bfaf" | "#f59085" | "#3bb7e2" | "#59d771" | "#ff8888" | "#e28dde" | "#1a2030" | "#ffffff" | "#8d8f97";
@@ -1,11 +1,11 @@
1
1
  import { KeyboardEvent, MouseEvent, ReactNode } from 'react';
2
- import { Color } from '../Types';
2
+ import { ColorWithNeutral } from '../Types';
3
3
  export declare const BackgroundStyles: import("styled-components").RuleSet<{
4
- color: Color;
4
+ color: ColorWithNeutral;
5
5
  isDisabled: boolean;
6
6
  }>;
7
7
  interface Props {
8
- color: Color;
8
+ color: ColorWithNeutral;
9
9
  children: ReactNode;
10
10
  isActive: boolean;
11
11
  isDisabled: boolean;
@@ -1,11 +1,11 @@
1
1
  import { ComponentPropsWithoutRef } from 'react';
2
- import { Color, Size, Speed } from '../../Types';
2
+ import { ColorWithNeutral, SpinnerSize, Speed } from '../../Types';
3
3
  interface SpinnerBaseProps {
4
- color: Color | string;
5
- size: Size | number;
4
+ color: ColorWithNeutral;
5
+ customColor?: string;
6
+ size: SpinnerSize | number;
6
7
  speed: Speed;
7
8
  }
8
- export interface SpinnerProps extends ComponentPropsWithoutRef<'div'>, Partial<SpinnerBaseProps> {
9
- }
10
- declare const Spinner: ({ size, color, speed, ...props }: SpinnerProps) => import("react/jsx-runtime").JSX.Element;
9
+ export type SpinnerProps = Partial<SpinnerBaseProps> & ComponentPropsWithoutRef<'div'>;
10
+ declare const Spinner: ({ size, color, speed, customColor, ...props }: SpinnerProps) => import("react/jsx-runtime").JSX.Element;
11
11
  export default Spinner;
@@ -1,4 +1,4 @@
1
- import { Color } from "../../Types";
1
+ import { Color } from '../../Types';
2
2
  export interface Props {
3
3
  selected?: boolean;
4
4
  disabled?: boolean;
@@ -14,7 +14,7 @@ export interface TabsProps {
14
14
  kbNavAutoOpen?: boolean;
15
15
  onTabClick?: (e: React.MouseEvent<HTMLButtonElement, MouseEvent>, index: number) => void;
16
16
  fullWidthBorder?: boolean;
17
- borderColor?: keyof typeof theme.colors.gray;
17
+ borderColor?: keyof typeof theme.colors.grayscaleToned;
18
18
  headline?: string;
19
19
  }
20
20
  export declare const Tabs: ({ activeColor, justify, activeIndex, initalActive, children, kbNavAutoOpen, onTabClick, fullWidthBorder, borderColor, headline, }: TabsProps) => import("react/jsx-runtime").JSX.Element;
package/types/index.d.ts CHANGED
@@ -46,7 +46,7 @@ export { useDynamicScript } from './hooks/useDynamicScript';
46
46
  export { Title, Subtitle, Headline, Display1, Display2, Display3, TinyTitleRegular, TinyTitleBold, } from './typography/Heading';
47
47
  export { Quote, Status, BodyLink, BodyText, Caption, CaptionLink, } from './typography/BodyText';
48
48
  export { Button as ButtonRegularText, ButtonLarge as ButtonLargeText, ButtonSmall as ButtonSmallText, } from './typography/ButtonText';
49
- export { hexToRGB } from './utils/utils';
49
+ export { hexToRGB, resolveColorWithNeutral } from './utils/utils';
50
50
  export { resetButtonStyle } from './utils/utils';
51
51
  export { ButtonLargeTextStyle, ButtonRegularTextStyle, ButtonSmallTextStyle, } from './typography/ButtonText';
52
52
  export { Display3Style, Display2Style, Display1Style, HeadlineStyle, TitleStyle, SubtitleStyle, TinyTitleRegularStyle, TinyTitleBoldStyle, } from './typography/Heading';
package/types/theme.d.ts CHANGED
@@ -9,104 +9,128 @@ export interface Theme {
9
9
  };
10
10
  colors: {
11
11
  primary: {
12
- darker: '#d98500';
12
+ darker: '#c48900';
13
13
  dark: '#e8a100';
14
+ mainAlt: '#e8a100';
14
15
  main: '#f5b400';
15
16
  light: '#f7cf57';
16
- lighter: '#fce5ab';
17
+ lighter: '#fbe7ab';
17
18
  lighter2: '#fff7e5';
19
+ lighter3: '#fdf9f1';
18
20
  };
19
21
  secondary: {
20
22
  darker: '#00474d';
21
- dark: '#007069';
22
- main: '#2a9d8f';
23
- light: '#6bb8a6';
24
- lighter: '#bae3cc';
25
- lighter2: '#e5f5ed';
23
+ dark: '#1b6359';
24
+ mainAlt: '#228277';
25
+ main: '#299d8f';
26
+ light: '#32bfaf';
27
+ lighter: '#a4ddcb';
28
+ lighter2: '#d6f0e8';
29
+ lighter3: '#f4fbf8';
26
30
  };
27
31
  tertiary: {
28
32
  darker: '#5e2636';
29
- dark: '#a63640';
30
- main: '#ef5b5b';
31
- light: '#f5968a';
32
- lighter: '#f5c7bf';
33
+ dark: '#9c333c';
34
+ mainAlt: '#c94d4d';
35
+ main: '#f05c5c';
36
+ light: '#f59085';
37
+ lighter: '#fac7c3';
33
38
  lighter2: '#fcedeb';
39
+ lighter3: '#fbf5f4';
34
40
  };
35
41
  info: {
36
- darker: '#17395d';
37
- dark: '#004773';
38
- main: '#007ab8';
39
- light: '#57c2ff';
42
+ darker: '#004773';
43
+ dark: '#005e8c';
44
+ mainAlt: '#007ab8';
45
+ main: '#499ad4';
46
+ light: '#3bb7e2';
40
47
  lighter: '#abe0ff';
41
48
  lighter2: '#e5f5ff';
49
+ lighter3: '#f4f8fb';
42
50
  };
43
51
  success: {
44
- darker: '#175c36';
45
- dark: '#269940';
46
- main: '#59d771';
47
- light: '#91e5a1';
52
+ darker: '#0b4222';
53
+ dark: '#006629';
54
+ mainAlt: '#00aa47';
55
+ main: '#3ac25e';
56
+ light: '#59d771';
48
57
  lighter: '#c7f2cf';
49
58
  lighter2: '#edfaf0';
59
+ lighter3: '#f4fbf7';
50
60
  };
51
61
  warning: {
52
- darker: '#d98500';
62
+ darker: '#c48900';
53
63
  dark: '#e8a100';
64
+ mainAlt: '#e8a100';
54
65
  main: '#f5b400';
55
66
  light: '#f7cf57';
56
- lighter: '#fce5ab';
67
+ lighter: '#fbe7ab';
57
68
  lighter2: '#fff7e5';
69
+ lighter3: '#fdf9f1';
58
70
  };
59
71
  error: {
60
- darker: '#5e2636';
61
- dark: '#a63640';
62
- main: '#ef5b5b';
63
- light: '#f5968a';
64
- lighter: '#f5c7bf';
65
- lighter2: '#fcedeb';
72
+ darker: '#841c24';
73
+ dark: '#aa2228';
74
+ mainAlt: '#e9191d';
75
+ main: '#ff5153';
76
+ light: '#ff8888';
77
+ lighter: '#ffc2c2';
78
+ lighter2: '#ffd6d6';
79
+ lighter3: '#fbf4f4';
66
80
  };
67
- neutral: {
68
- darker: '#1a2030';
69
- dark: '#1a2030';
70
- main: '#1a2030';
71
- light: '#474d59';
72
- lighter: '#5e6369';
73
- lighter2: '#707378';
81
+ purple: {
82
+ darker: '#42214f';
83
+ dark: '#8f367f';
84
+ mainAlt: '#a33e90';
85
+ main: '#cf59bf';
86
+ light: '#e28dde';
87
+ lighter: '#e0bfd9';
88
+ lighter2: '#f5edf2';
89
+ lighter3: '#fbf4f9';
74
90
  };
75
91
  text: {
76
92
  dark: '#1a2030';
93
+ disabled: '#babcc2';
77
94
  light: '#ffffff';
78
- disabled: '#8c8f91';
79
95
  };
80
96
  background: {
81
- dark: '#1a2030';
97
+ light: '#ffffff';
98
+ lightGray: '#fafafa';
82
99
  gray: '#f2f2f2';
83
100
  sand: '#f2efe6';
84
- light: '#ffffff';
101
+ dark: '#1a2030';
85
102
  };
86
103
  common: {
87
104
  black: '#000000';
88
105
  white: '#ffffff';
89
- purple: {
90
- darker: '#42214f';
91
- dark: '#732e70';
92
- main: '#a13d8f';
93
- light: '#c27db5';
94
- lighter: '#e0bfd9';
95
- lighter2: '#f5edf2';
96
- };
97
106
  };
98
- gray: {
107
+ grayscaleToned: {
99
108
  dark1: '#1a2030';
100
- dark2: '#303842';
101
- dark3: '#474d59';
102
- dark4: '#5e6369';
103
- dark5: '#707378';
104
- light1: '#8c8f91';
105
- light2: '#a3a6a8';
106
- light3: '#c7c7c4';
107
- light4: '#d9d9d6';
108
- light5: '#e8e8e8';
109
+ dark2: '#313645';
110
+ dark3: '#484d59';
111
+ dark4: '#5f636e';
112
+ dark5: '#71757f';
113
+ light1: '#8d8f97';
114
+ light2: '#a4a6ac';
115
+ light3: '#babcc2';
116
+ light4: '#d1d2d6';
117
+ light5: '#e8e9ea';
109
118
  light6: '#f2f2f2';
119
+ light7: '#fafafa';
120
+ };
121
+ grayscaleNeutral: {
122
+ dark1: '#000000';
123
+ dark2: '#191919';
124
+ dark3: '#333333';
125
+ dark4: '#4c4c4c';
126
+ dark5: '#666666';
127
+ light1: '#7f7f7f';
128
+ light2: '#999999';
129
+ light3: '#b2b2b2';
130
+ light4: '#cccccc';
131
+ light5: '#e5e5e5';
132
+ light6: '#f0f0f0';
133
+ light7: '#fbfbfb';
110
134
  };
111
135
  };
112
136
  elevations: {
@@ -1,6 +1,7 @@
1
1
  import React from 'react';
2
2
  export declare const BodyTextStyle: import("styled-components").RuleSet<object>;
3
3
  export declare const CaptionStyle: import("styled-components").RuleSet<object>;
4
+ export declare const Caption2Style: import("styled-components").RuleSet<object>;
4
5
  export declare const StyledBodyText: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, never>> & string;
5
6
  export declare const QuoteStyle: import("styled-components").RuleSet<object>;
6
7
  export declare const Quote: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, never>> & string;
@@ -8,6 +9,7 @@ export declare const BodyText: import("styled-components/dist/types").IStyledCom
8
9
  export declare const BodyLinkStyle: import("styled-components").RuleSet<object>;
9
10
  export declare const BodyLink: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, never>> & string;
10
11
  export declare const Caption: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, never>> & string;
12
+ export declare const Caption2: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, never>> & string;
11
13
  export declare const CaptionLinkStyle: import("styled-components").RuleSet<object>;
12
14
  export declare const CaptionLink: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, never>> & string;
13
15
  export declare const StatusStyle: import("styled-components").RuleSet<object>;
@@ -1,3 +1,82 @@
1
+ import { Theme } from '../theme';
2
+ import { ColorWithNeutral } from '../Types';
1
3
  export declare const getLuminosity: (hexColor: string) => number;
2
4
  export declare const hexToRGB: (hex: string, alpha?: number) => string;
3
5
  export declare const resetButtonStyle: import("styled-components").RuleSet<object>;
6
+ export declare const neutralColorSwap: (theme: Theme) => {
7
+ darker: "#000000";
8
+ dark: "#000000";
9
+ mainAlt: "#1a2030";
10
+ main: "#1a2030";
11
+ light: "#8d8f97";
12
+ };
13
+ export declare const resolveColorWithNeutral: (theme: Theme, color: ColorWithNeutral) => {
14
+ darker: "#c48900";
15
+ dark: "#e8a100";
16
+ mainAlt: "#e8a100";
17
+ main: "#f5b400";
18
+ light: "#f7cf57";
19
+ lighter: "#fbe7ab";
20
+ lighter2: "#fff7e5";
21
+ lighter3: "#fdf9f1";
22
+ } | {
23
+ darker: "#00474d";
24
+ dark: "#1b6359";
25
+ mainAlt: "#228277";
26
+ main: "#299d8f";
27
+ light: "#32bfaf";
28
+ lighter: "#a4ddcb";
29
+ lighter2: "#d6f0e8";
30
+ lighter3: "#f4fbf8";
31
+ } | {
32
+ darker: "#5e2636";
33
+ dark: "#9c333c";
34
+ mainAlt: "#c94d4d";
35
+ main: "#f05c5c";
36
+ light: "#f59085";
37
+ lighter: "#fac7c3";
38
+ lighter2: "#fcedeb";
39
+ lighter3: "#fbf5f4";
40
+ } | {
41
+ darker: "#004773";
42
+ dark: "#005e8c";
43
+ mainAlt: "#007ab8";
44
+ main: "#499ad4";
45
+ light: "#3bb7e2";
46
+ lighter: "#abe0ff";
47
+ lighter2: "#e5f5ff";
48
+ lighter3: "#f4f8fb";
49
+ } | {
50
+ darker: "#0b4222";
51
+ dark: "#006629";
52
+ mainAlt: "#00aa47";
53
+ main: "#3ac25e";
54
+ light: "#59d771";
55
+ lighter: "#c7f2cf";
56
+ lighter2: "#edfaf0";
57
+ lighter3: "#f4fbf7";
58
+ } | {
59
+ darker: "#841c24";
60
+ dark: "#aa2228";
61
+ mainAlt: "#e9191d";
62
+ main: "#ff5153";
63
+ light: "#ff8888";
64
+ lighter: "#ffc2c2";
65
+ lighter2: "#ffd6d6";
66
+ lighter3: "#fbf4f4";
67
+ } | {
68
+ darker: "#42214f";
69
+ dark: "#8f367f";
70
+ mainAlt: "#a33e90";
71
+ main: "#cf59bf";
72
+ light: "#e28dde";
73
+ lighter: "#e0bfd9";
74
+ lighter2: "#f5edf2";
75
+ lighter3: "#fbf4f9";
76
+ } | {
77
+ darker: "#000000";
78
+ dark: "#000000";
79
+ mainAlt: "#1a2030";
80
+ main: "#1a2030";
81
+ light: "#8d8f97";
82
+ };