pixelplay 1.1.1 → 1.1.4
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 +85 -0
- package/dist/index.js +93 -89
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +93 -89
- package/dist/index.mjs.map +1 -1
- package/dist/server.js +84 -84
- package/dist/server.js.map +1 -1
- package/dist/server.mjs +84 -84
- package/dist/server.mjs.map +1 -1
- package/dist/styles.css +164 -164
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,91 @@ This project adheres to [Semantic Versioning](https://semver.org/).
|
|
|
6
6
|
|
|
7
7
|
---
|
|
8
8
|
|
|
9
|
+
## [1.1.4] - 2026-04-07
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
|
|
13
|
+
- **21 new shared/ui components**: `Accordion`, `AlertDialog`, `AspectRatio`, `Carousel`, `Collapsible`, `ContextMenu`, `Drawer`, `HoverCard`, `InputOTP`, `Kbd`, `Label`, `Menubar`, `NavigationMenu`, `Popover`, `RadioGroup`, `Resizable`, `ScrollArea`, `Separator`, `Sheet`, `Skeleton`, `ToggleGroup` - all in `shared/ui/<folder>` with full types and barrel exports
|
|
14
|
+
- **21 new demo pages**: Dedicated docs pages under `/ui-kit/components/` for each new component with interactive previews and code snippets
|
|
15
|
+
- **Sidebar nav entries**: All 21 new components added to the docs sidebar navigation (`DocsLayoutShell`)
|
|
16
|
+
- **`InputOTP` component** (`shared/ui/input-otp`): Dedicated OTP/PIN input with grouped cells, separator support, configurable length, and auto-focus advance - replaces the previous `MegaInput` section on the Input docs page
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
|
|
20
|
+
- **Color token scales**: Shifted `800`-`975` stops one step darker across all color scales (primary, error, warning, success, red, orange, amber, yellow, lime, green, emerald, teal, cyan, blueLight, blue, indigo, violet, purple, fuchsia, pink, rose) for improved dark-mode contrast
|
|
21
|
+
- **Input docs page**: Removed `MegaInput` section (replaced by standalone `InputOTP` docs page), cleaned up import paths to use `pixelplay` shorthand
|
|
22
|
+
- **Menubar demos**: Replaced non-existent `MenubarShortcut` import with `shortcut` prop on `MenubarItem`; `MenubarSubTrigger` auto-renders chevron icon
|
|
23
|
+
- **NavigationMenu demos**: Simplified dropdown content from wide `w-[400px]` description cards to compact `w-52`/`w-80` link lists
|
|
24
|
+
- **Resizable component**: Fixed multi-instance bug where module-level panel/handle counters were shared across all `ResizablePanelGroup` instances - counters now scoped per group via context
|
|
25
|
+
|
|
26
|
+
### Fixed
|
|
27
|
+
|
|
28
|
+
- **Sheet/Popover/Drawer/AlertDialog demos**: Added `asChild` to trigger components to prevent nested `<button>` hydration errors
|
|
29
|
+
- **Demo type errors**: Replaced `variant="outline"` with `"bordered"` and `color="error"` with `"danger"` in AlertDialog, Sheet, Drawer, and Popover demo pages to match `StyleVariant`/`ColorVariant` types
|
|
30
|
+
- **HoverCard**: Fixed `useRef()` calls missing required initial value for React 19 compatibility (`useRef<T>()` -> `useRef<T | undefined>(undefined)`)
|
|
31
|
+
- **ScrollArea**: Same `useRef()` React 19 fix
|
|
32
|
+
- **Collapsible**: Fixed `scrollHeight` ref timing issue
|
|
33
|
+
- **Carousel**: Fixed vertical sizing
|
|
34
|
+
- **ContextMenu**: Fixed missing exports and incorrect API usage in demos
|
|
35
|
+
- **Drawer**: Fixed nested button hydration error and improved demo content
|
|
36
|
+
- **AspectRatio**: Fixed broken demo images
|
|
37
|
+
|
|
38
|
+
---
|
|
39
|
+
|
|
40
|
+
## [1.1.3] - 2026-04-06
|
|
41
|
+
|
|
42
|
+
### Added
|
|
43
|
+
|
|
44
|
+
- **`SectionHeader` chat variant** (`widgets/section-header`): New `variant="chat"` - sticky header for chat detail panels with large avatar, name, status badge, action buttons, and trailing menu
|
|
45
|
+
- **`InfoCard` chat-list variant** (`widgets/info-card`): New `variant="chat-list"` - scrollable conversation list panel with search input, unread indicators, avatar with online status, message preview, and timestamp
|
|
46
|
+
- **`InfoCard` showcase variant** (`widgets/info-card`): New `variant="showcase"` - case-study card with image, stats grid, and link overlay (replaces `WebsiteCaseStudyCard`)
|
|
47
|
+
- **`HeroSection` showcase variant** (`widgets/hero-section`): New `variant="showcase"` - case-study hero with large title, subtitle, description, stat chips, and full-bleed background image (replaces `WebsiteCaseStudyHero`)
|
|
48
|
+
- **New generic widgets**: `content-section`, `text-block`, `media-section` (exports `MediaFullImage`, `MediaDualImage`, `MediaVideo`), `diagram-section`, `showcase-grid` - generic reusable widgets extracted from case-study-specific components
|
|
49
|
+
- **Messaging example page** (`messaging-01`): Full chat application layout with sidebar nav, chat list (`InfoCard variant="chat-list"`), chat detail panel (`SectionHeader variant="chat"`), `ChatMessage` bubbles, typing indicator, file attachments, reactions, and day dividers
|
|
50
|
+
- **Listing example pages** (`listing-03`, `listing-04`, `listing-05`): Three new listing layouts - listing-03 (team member directory table with avatar, role, and status columns), listing-04 (blog/article grid with category filters and featured post), listing-05 (team directory with search, role filters, and detailed member cards)
|
|
51
|
+
- **Messaging examples docs page** (`/ui-kit/examples/messaging`): Docs page listing and previewing the messaging example
|
|
52
|
+
- **Messaging nav entry**: "Email & Messaging" link added to the Examples section in the docs sidebar (`DocsLayoutShell`)
|
|
53
|
+
|
|
54
|
+
### Changed
|
|
55
|
+
|
|
56
|
+
- **Deprecated widget consolidation**: Removed 9 standalone widget folders (`website-case-study-hero`, `website-case-study-card`, `website-case-study-content`, `website-case-study-text-block`, `website-case-study-images`, `website-case-study-diagram`, `website-case-studies-grid`, `chat-header`, `chat-list`) - functionality merged into generic widgets and variant-based components
|
|
57
|
+
- **Case study pages**: All 3 case-study pages (`digital-diagramming`, `no-code-app-builder`, `personal-finance-webapp`) updated to use new generic widgets (`HeroSection`, `ContentSection`, `TextBlock`, `MediaFullImage`, `MediaDualImage`, `MediaVideo`, `DiagramSection`)
|
|
58
|
+
- **Work pages**: All 4 work pages (`core-fitness-app`, `brainstorming-app`, `gelato-glam-delivery-app`, `kish-coach`) updated to use new generic widget names
|
|
59
|
+
- **Homepage**: `WebsiteCaseStudiesGrid` replaced with `ShowcaseGrid`
|
|
60
|
+
- **Docs demo pages**: All case-study component docs updated to import from new widget paths
|
|
61
|
+
|
|
62
|
+
---
|
|
63
|
+
|
|
64
|
+
## [1.1.2] — 2026-04-06
|
|
65
|
+
|
|
66
|
+
### Added
|
|
67
|
+
|
|
68
|
+
- **`CompanyLogo` component** (`shared/ui/company-logo`): New shared component for company/brand marks — renders a logo image with a coloured initials fallback. Supports 5 sizes (`xs`–`xl`), two shapes (`square`/`rectangle`), 4 radius options, and 12 colour variants (including `--graphic-1` through `--graphic-8` categorical tokens). Exported from `shared/ui/index.ts`
|
|
69
|
+
- **`InfoCard` widget** (`widgets/info-card`): New multi-variant card widget. Variants: `default` (section card with header/body/footer slots and optional menu button), `horizontal` (property listing card with image, star rating, amenities, and price — vertical on mobile, row at xl), `post` (blog/article card with gradient/image banner, author, tags, and social action buttons), `action` (compact pressable card with icon button and description), `stat` (icon + label + value stat card with optional footer slot)
|
|
70
|
+
- **`MapEmbed` widget** (`widgets/map`): New `MapEmbed` component that wraps an `<iframe>` map embed with dark-mode support — auto-applies a CSS invert filter when no `darkSrc` is provided
|
|
71
|
+
- **Listing example pages**: Two new full-page listing layouts — `listing-01` (property search results with sticky sidebar nav, filter bar, horizontal `InfoCard` listing cards, sticky map panel, and pagination) and `listing-02` (remote job board with slim icon sidebar, search/filter controls, scrollable job card list with `CompanyLogo` and `Badge`, and a sticky job detail panel)
|
|
72
|
+
- **Listing examples docs page** (`/ui-kit/examples/listing`): Docs page listing and previewing both listing examples with descriptions
|
|
73
|
+
- **Listing nav entry**: "Listing" link added to the Examples section in the docs sidebar (`DocsLayoutShell`)
|
|
74
|
+
- **`CompanyLogo` docs page** (`/ui-kit/components/company-logo`): Full component documentation — real logos, initials fallback, sizes, shapes, and radius options; also added "Company logo" nav entry in docs sidebar
|
|
75
|
+
- **`Card` docs page expanded**: New sections for Horizontal layout (`InfoCard variant="horizontal"`), Action card, Post card, Gradient header, Card grid, and Compact card patterns; also added "Card" nav entry in docs sidebar
|
|
76
|
+
|
|
77
|
+
### Changed
|
|
78
|
+
|
|
79
|
+
- **`Tag` lg size**: Updated typography — `text-base font-medium leading-6` (was `text-sm`), `rounded-lg` (was `rounded-md`), `px-3.5` (was `px-3`), dot `h-2.5 w-2.5` (was `h-2 w-2`)
|
|
80
|
+
- **`Card` default shadow**: Changed default `shadow` prop from `"md"` to `"xs"` for a subtler card elevation
|
|
81
|
+
- **`Checkbox` hit area**: Input element repositioned from `inset-0` to `top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2` with `min-h-10 min-w-10` (sm) / `min-h-12 min-w-12` for reliable 44px+ touch targets
|
|
82
|
+
- **`Toggle` hit area**: Added `before:` pseudo-element inset (`-inset-[10px]` for sm, `-inset-3` for default) to expand the tap/click area to minimum touch target size
|
|
83
|
+
- **`dashboards-01`**: Replaced inline `<Card>` + raw action/post markup with `InfoCard variant="action"` and `InfoCard variant="post"` widget
|
|
84
|
+
- **`dashboards-04`**: Replaced manual chart card header markup with `InfoCard variant="default"` widget for all four chart sections
|
|
85
|
+
- **`dashboards-05`**: Replaced manual card markup for "Active users", "How do you acquire users?", and "Channel breakdown" sections with `InfoCard variant="default"`
|
|
86
|
+
- **`dashboards-06`**: Replaced local `SavingsGoalCard` sub-component and inline chart card markup with `InfoCard variant="stat"` and `InfoCard variant="default"`; `SavingsGoalCard` function removed
|
|
87
|
+
- **Surface container tokens** (`build-custom-theme.ts`): Adjusted container level step sizes for both light and dark modes — `low/mid/high/highest` now each step one shade further from the base surface, giving better visual layering across container elevation levels
|
|
88
|
+
- **`calendar-01` / `calendar-03` sticky header**: Removed `border-b border-[var(--outline-variant)]` from the sticky `<header>` element
|
|
89
|
+
- **`calendar-02` profile page header**: Wrapped `PageHeader` in `px-2 pt-2` container; updated tab row to add `lg:pb-4` bottom padding
|
|
90
|
+
- **`next.config.ts`**: Added `i.pravatar.cc` to allowed Next.js image hostnames
|
|
91
|
+
|
|
92
|
+
---
|
|
93
|
+
|
|
9
94
|
## [1.1.1] — 2026-04-04
|
|
10
95
|
|
|
11
96
|
### Added
|
package/dist/index.js
CHANGED
|
@@ -956,10 +956,10 @@ var SIZE_MAP = {
|
|
|
956
956
|
checkbox: "h-3.5 w-3.5"
|
|
957
957
|
},
|
|
958
958
|
lg: {
|
|
959
|
-
outer: "gap-2 rounded-
|
|
960
|
-
text: "text-
|
|
959
|
+
outer: "gap-2 rounded-lg px-3.5 py-1.5",
|
|
960
|
+
text: "text-base font-medium leading-6",
|
|
961
961
|
iconWrapper: "h-5 w-5",
|
|
962
|
-
dot: "h-2 w-2",
|
|
962
|
+
dot: "h-2.5 w-2.5",
|
|
963
963
|
dismissSize: 14,
|
|
964
964
|
checkbox: "h-4 w-4"
|
|
965
965
|
}
|
|
@@ -1051,7 +1051,7 @@ var Card = import_react5.default.forwardRef(
|
|
|
1051
1051
|
className,
|
|
1052
1052
|
isPressable = false,
|
|
1053
1053
|
isBlurred = false,
|
|
1054
|
-
shadow = "
|
|
1054
|
+
shadow = "xs",
|
|
1055
1055
|
radius = "lg",
|
|
1056
1056
|
fullWidth = false,
|
|
1057
1057
|
onClick
|
|
@@ -2188,6 +2188,7 @@ function Toggle({
|
|
|
2188
2188
|
!isChecked && !isDisabled && "hover:bg-[var(--surface-container-high)]",
|
|
2189
2189
|
"focus-visible:outline-none focus-visible:ring-4 focus-visible:ring-[var(--primary-container)]",
|
|
2190
2190
|
isDisabled ? "cursor-not-allowed" : "cursor-pointer",
|
|
2191
|
+
size === "sm" ? "before:content-[''] before:absolute before:-inset-[10px]" : "before:content-[''] before:absolute before:-inset-3",
|
|
2191
2192
|
!label && !description && className
|
|
2192
2193
|
),
|
|
2193
2194
|
children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
|
|
@@ -2363,7 +2364,10 @@ function Checkbox({
|
|
|
2363
2364
|
onChange: handleChange,
|
|
2364
2365
|
disabled: isDisabled,
|
|
2365
2366
|
"aria-checked": indeterminate ? "mixed" : isChecked,
|
|
2366
|
-
className:
|
|
2367
|
+
className: cn(
|
|
2368
|
+
"peer absolute top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2 cursor-pointer opacity-0 disabled:cursor-not-allowed",
|
|
2369
|
+
size === "sm" ? "min-h-10 min-w-10" : "min-h-12 min-w-12"
|
|
2370
|
+
)
|
|
2367
2371
|
}
|
|
2368
2372
|
),
|
|
2369
2373
|
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
@@ -22504,10 +22508,10 @@ var colors = {
|
|
|
22504
22508
|
500: "#9E77ED",
|
|
22505
22509
|
600: "#7F56D9",
|
|
22506
22510
|
700: "#6941C6",
|
|
22507
|
-
800: "#
|
|
22508
|
-
900: "#
|
|
22509
|
-
950: "#
|
|
22510
|
-
975: "#
|
|
22511
|
+
800: "#42307D",
|
|
22512
|
+
900: "#26145A",
|
|
22513
|
+
950: "#160C34",
|
|
22514
|
+
975: "#0B061A"
|
|
22511
22515
|
},
|
|
22512
22516
|
error: {
|
|
22513
22517
|
25: "#FFFBFA",
|
|
@@ -22519,10 +22523,10 @@ var colors = {
|
|
|
22519
22523
|
500: "#F04438",
|
|
22520
22524
|
600: "#D92D20",
|
|
22521
22525
|
700: "#B42318",
|
|
22522
|
-
800: "#
|
|
22523
|
-
900: "#
|
|
22524
|
-
950: "#
|
|
22525
|
-
975: "#
|
|
22526
|
+
800: "#7A271A",
|
|
22527
|
+
900: "#4C1108",
|
|
22528
|
+
950: "#2B0904",
|
|
22529
|
+
975: "#160502"
|
|
22526
22530
|
},
|
|
22527
22531
|
warning: {
|
|
22528
22532
|
25: "#FFFCF5",
|
|
@@ -22534,10 +22538,10 @@ var colors = {
|
|
|
22534
22538
|
500: "#F79009",
|
|
22535
22539
|
600: "#DC6803",
|
|
22536
22540
|
700: "#B54708",
|
|
22537
|
-
800: "#
|
|
22538
|
-
900: "#
|
|
22539
|
-
950: "#
|
|
22540
|
-
975: "#
|
|
22541
|
+
800: "#7A2E0E",
|
|
22542
|
+
900: "#491A06",
|
|
22543
|
+
950: "#291003",
|
|
22544
|
+
975: "#150802"
|
|
22541
22545
|
},
|
|
22542
22546
|
success: {
|
|
22543
22547
|
25: "#F6FEF9",
|
|
@@ -22549,10 +22553,10 @@ var colors = {
|
|
|
22549
22553
|
500: "#12B76A",
|
|
22550
22554
|
600: "#039855",
|
|
22551
22555
|
700: "#027A48",
|
|
22552
|
-
800: "#
|
|
22553
|
-
900: "#
|
|
22554
|
-
950: "#
|
|
22555
|
-
975: "#
|
|
22556
|
+
800: "#054F31",
|
|
22557
|
+
900: "#03301E",
|
|
22558
|
+
950: "#021C11",
|
|
22559
|
+
975: "#010E09"
|
|
22556
22560
|
},
|
|
22557
22561
|
// ── Neutrals ──────────────────────────────────────────────────────────────
|
|
22558
22562
|
gray: {
|
|
@@ -22626,10 +22630,10 @@ var colors = {
|
|
|
22626
22630
|
500: "#EF4444",
|
|
22627
22631
|
600: "#DC2626",
|
|
22628
22632
|
700: "#B91C1C",
|
|
22629
|
-
800: "#
|
|
22630
|
-
900: "#
|
|
22631
|
-
950: "#
|
|
22632
|
-
975: "#
|
|
22633
|
+
800: "#7F1D1D",
|
|
22634
|
+
900: "#4C1111",
|
|
22635
|
+
950: "#2B0909",
|
|
22636
|
+
975: "#160505"
|
|
22633
22637
|
},
|
|
22634
22638
|
orange: {
|
|
22635
22639
|
25: "#FFFAF5",
|
|
@@ -22641,10 +22645,10 @@ var colors = {
|
|
|
22641
22645
|
500: "#FB6514",
|
|
22642
22646
|
600: "#EC4A0A",
|
|
22643
22647
|
700: "#C4320A",
|
|
22644
|
-
800: "#
|
|
22645
|
-
900: "#
|
|
22646
|
-
950: "#
|
|
22647
|
-
975: "#
|
|
22648
|
+
800: "#7E2410",
|
|
22649
|
+
900: "#4C1509",
|
|
22650
|
+
950: "#2B0C05",
|
|
22651
|
+
975: "#160603"
|
|
22648
22652
|
},
|
|
22649
22653
|
amber: {
|
|
22650
22654
|
25: "#FFFDF5",
|
|
@@ -22656,10 +22660,10 @@ var colors = {
|
|
|
22656
22660
|
500: "#F59E0B",
|
|
22657
22661
|
600: "#D97706",
|
|
22658
22662
|
700: "#B45309",
|
|
22659
|
-
800: "#
|
|
22660
|
-
900: "#
|
|
22661
|
-
950: "#
|
|
22662
|
-
975: "#
|
|
22663
|
+
800: "#78350F",
|
|
22664
|
+
900: "#471E07",
|
|
22665
|
+
950: "#280F03",
|
|
22666
|
+
975: "#140802"
|
|
22663
22667
|
},
|
|
22664
22668
|
yellow: {
|
|
22665
22669
|
25: "#FEFEF2",
|
|
@@ -22671,10 +22675,10 @@ var colors = {
|
|
|
22671
22675
|
500: "#EAB308",
|
|
22672
22676
|
600: "#CA8A04",
|
|
22673
22677
|
700: "#A16207",
|
|
22674
|
-
800: "#
|
|
22675
|
-
900: "#
|
|
22676
|
-
950: "#
|
|
22677
|
-
975: "#
|
|
22678
|
+
800: "#713F12",
|
|
22679
|
+
900: "#44250A",
|
|
22680
|
+
950: "#261505",
|
|
22681
|
+
975: "#130B03"
|
|
22678
22682
|
},
|
|
22679
22683
|
// ── Greens ────────────────────────────────────────────────────────────────
|
|
22680
22684
|
lime: {
|
|
@@ -22687,10 +22691,10 @@ var colors = {
|
|
|
22687
22691
|
500: "#84CC16",
|
|
22688
22692
|
600: "#65A30D",
|
|
22689
22693
|
700: "#4D7C0F",
|
|
22690
|
-
800: "#
|
|
22691
|
-
900: "#
|
|
22692
|
-
950: "#
|
|
22693
|
-
975: "#
|
|
22694
|
+
800: "#365314",
|
|
22695
|
+
900: "#20320C",
|
|
22696
|
+
950: "#121C06",
|
|
22697
|
+
975: "#090E03"
|
|
22694
22698
|
},
|
|
22695
22699
|
green: {
|
|
22696
22700
|
25: "#F2FDF5",
|
|
@@ -22702,10 +22706,10 @@ var colors = {
|
|
|
22702
22706
|
500: "#22C55E",
|
|
22703
22707
|
600: "#16A34A",
|
|
22704
22708
|
700: "#15803D",
|
|
22705
|
-
800: "#
|
|
22706
|
-
900: "#
|
|
22707
|
-
950: "#
|
|
22708
|
-
975: "#
|
|
22709
|
+
800: "#14532D",
|
|
22710
|
+
900: "#0C321B",
|
|
22711
|
+
950: "#061C0F",
|
|
22712
|
+
975: "#030E08"
|
|
22709
22713
|
},
|
|
22710
22714
|
emerald: {
|
|
22711
22715
|
25: "#F3FDF8",
|
|
@@ -22717,10 +22721,10 @@ var colors = {
|
|
|
22717
22721
|
500: "#10B981",
|
|
22718
22722
|
600: "#059669",
|
|
22719
22723
|
700: "#047857",
|
|
22720
|
-
800: "#
|
|
22721
|
-
900: "#
|
|
22722
|
-
950: "#
|
|
22723
|
-
975: "#
|
|
22724
|
+
800: "#064E3B",
|
|
22725
|
+
900: "#032F23",
|
|
22726
|
+
950: "#021A13",
|
|
22727
|
+
975: "#010D0A"
|
|
22724
22728
|
},
|
|
22725
22729
|
teal: {
|
|
22726
22730
|
25: "#F0FCFB",
|
|
@@ -22732,10 +22736,10 @@ var colors = {
|
|
|
22732
22736
|
500: "#14B8A6",
|
|
22733
22737
|
600: "#0D9488",
|
|
22734
22738
|
700: "#0F766E",
|
|
22735
|
-
800: "#
|
|
22736
|
-
900: "#
|
|
22737
|
-
950: "#
|
|
22738
|
-
975: "#
|
|
22739
|
+
800: "#134E4A",
|
|
22740
|
+
900: "#0A302E",
|
|
22741
|
+
950: "#061C1A",
|
|
22742
|
+
975: "#030E0D"
|
|
22739
22743
|
},
|
|
22740
22744
|
// ── Blues ─────────────────────────────────────────────────────────────────
|
|
22741
22745
|
cyan: {
|
|
@@ -22748,10 +22752,10 @@ var colors = {
|
|
|
22748
22752
|
500: "#06B6D4",
|
|
22749
22753
|
600: "#0891B2",
|
|
22750
22754
|
700: "#0E7490",
|
|
22751
|
-
800: "#
|
|
22752
|
-
900: "#
|
|
22753
|
-
950: "#
|
|
22754
|
-
975: "#
|
|
22755
|
+
800: "#164E63",
|
|
22756
|
+
900: "#0C2F3C",
|
|
22757
|
+
950: "#071A22",
|
|
22758
|
+
975: "#040D11"
|
|
22755
22759
|
},
|
|
22756
22760
|
blueLight: {
|
|
22757
22761
|
25: "#F5FBFF",
|
|
@@ -22763,10 +22767,10 @@ var colors = {
|
|
|
22763
22767
|
500: "#0BA5EC",
|
|
22764
22768
|
600: "#0086C9",
|
|
22765
22769
|
700: "#026AA2",
|
|
22766
|
-
800: "#
|
|
22767
|
-
900: "#
|
|
22768
|
-
950: "#
|
|
22769
|
-
975: "#
|
|
22770
|
+
800: "#0B4A6F",
|
|
22771
|
+
900: "#062C43",
|
|
22772
|
+
950: "#031826",
|
|
22773
|
+
975: "#020C13"
|
|
22770
22774
|
},
|
|
22771
22775
|
blue: {
|
|
22772
22776
|
25: "#F5FAFF",
|
|
@@ -22778,10 +22782,10 @@ var colors = {
|
|
|
22778
22782
|
500: "#2E90FA",
|
|
22779
22783
|
600: "#1570EF",
|
|
22780
22784
|
700: "#175CD3",
|
|
22781
|
-
800: "#
|
|
22782
|
-
900: "#
|
|
22783
|
-
950: "#
|
|
22784
|
-
975: "#
|
|
22785
|
+
800: "#194185",
|
|
22786
|
+
900: "#0E2669",
|
|
22787
|
+
950: "#08153B",
|
|
22788
|
+
975: "#040B1E"
|
|
22785
22789
|
},
|
|
22786
22790
|
blueGray: {
|
|
22787
22791
|
25: "#FCFCFD",
|
|
@@ -22809,10 +22813,10 @@ var colors = {
|
|
|
22809
22813
|
500: "#6172F3",
|
|
22810
22814
|
600: "#444CE7",
|
|
22811
22815
|
700: "#3538CD",
|
|
22812
|
-
800: "#
|
|
22813
|
-
900: "#
|
|
22814
|
-
950: "#
|
|
22815
|
-
975: "#
|
|
22816
|
+
800: "#2D3282",
|
|
22817
|
+
900: "#1B1F52",
|
|
22818
|
+
950: "#10122F",
|
|
22819
|
+
975: "#080918"
|
|
22816
22820
|
},
|
|
22817
22821
|
violet: {
|
|
22818
22822
|
25: "#FAFAFF",
|
|
@@ -22824,10 +22828,10 @@ var colors = {
|
|
|
22824
22828
|
500: "#8B5CF6",
|
|
22825
22829
|
600: "#7C3AED",
|
|
22826
22830
|
700: "#6D28D9",
|
|
22827
|
-
800: "#
|
|
22828
|
-
900: "#
|
|
22829
|
-
950: "#
|
|
22830
|
-
975: "#
|
|
22831
|
+
800: "#4C1D95",
|
|
22832
|
+
900: "#2D1159",
|
|
22833
|
+
950: "#190932",
|
|
22834
|
+
975: "#0D0519"
|
|
22831
22835
|
},
|
|
22832
22836
|
purple: {
|
|
22833
22837
|
25: "#FAFAFF",
|
|
@@ -22839,10 +22843,10 @@ var colors = {
|
|
|
22839
22843
|
500: "#7A5AF8",
|
|
22840
22844
|
600: "#6938EF",
|
|
22841
22845
|
700: "#5925DC",
|
|
22842
|
-
800: "#
|
|
22843
|
-
900: "#
|
|
22844
|
-
950: "#
|
|
22845
|
-
975: "#
|
|
22846
|
+
800: "#3E1C96",
|
|
22847
|
+
900: "#25105A",
|
|
22848
|
+
950: "#140932",
|
|
22849
|
+
975: "#0A0519"
|
|
22846
22850
|
},
|
|
22847
22851
|
fuchsia: {
|
|
22848
22852
|
25: "#FEF8FF",
|
|
@@ -22854,10 +22858,10 @@ var colors = {
|
|
|
22854
22858
|
500: "#D946EF",
|
|
22855
22859
|
600: "#C026D3",
|
|
22856
22860
|
700: "#A21CAF",
|
|
22857
|
-
800: "#
|
|
22858
|
-
900: "#
|
|
22859
|
-
950: "#
|
|
22860
|
-
975: "#
|
|
22861
|
+
800: "#701A75",
|
|
22862
|
+
900: "#430F46",
|
|
22863
|
+
950: "#250827",
|
|
22864
|
+
975: "#130414"
|
|
22861
22865
|
},
|
|
22862
22866
|
pink: {
|
|
22863
22867
|
25: "#FEF6FB",
|
|
@@ -22869,10 +22873,10 @@ var colors = {
|
|
|
22869
22873
|
500: "#EE46BC",
|
|
22870
22874
|
600: "#DD2590",
|
|
22871
22875
|
700: "#C11574",
|
|
22872
|
-
800: "#
|
|
22873
|
-
900: "#
|
|
22874
|
-
950: "#
|
|
22875
|
-
975: "#
|
|
22876
|
+
800: "#851651",
|
|
22877
|
+
900: "#4F0C30",
|
|
22878
|
+
950: "#2C071A",
|
|
22879
|
+
975: "#16040D"
|
|
22876
22880
|
},
|
|
22877
22881
|
rose: {
|
|
22878
22882
|
25: "#FFF5F6",
|
|
@@ -22884,10 +22888,10 @@ var colors = {
|
|
|
22884
22888
|
500: "#F63D68",
|
|
22885
22889
|
600: "#E31B54",
|
|
22886
22890
|
700: "#C01048",
|
|
22887
|
-
800: "#
|
|
22888
|
-
900: "#
|
|
22889
|
-
950: "#
|
|
22890
|
-
975: "#
|
|
22891
|
+
800: "#89123E",
|
|
22892
|
+
900: "#520A25",
|
|
22893
|
+
950: "#2E0514",
|
|
22894
|
+
975: "#17030A"
|
|
22891
22895
|
}
|
|
22892
22896
|
};
|
|
22893
22897
|
var textScale = {
|