@fabrica_communications/design-system 0.1.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.
- package/README.md +54 -0
- package/package.json +91 -0
- package/src/app/components/page.tsx +19 -0
- package/src/app/favicon.ico +0 -0
- package/src/app/foundations/colors/page.tsx +11 -0
- package/src/app/foundations/page.tsx +11 -0
- package/src/app/foundations/typography/page.tsx +11 -0
- package/src/app/getting-started/page.tsx +11 -0
- package/src/app/globals.css +3 -0
- package/src/app/layout.tsx +61 -0
- package/src/app/page.tsx +994 -0
- package/src/components/shared/gap.tsx +103 -0
- package/src/components/shared/page-header.tsx +11 -0
- package/src/components/shared/page-top-button.tsx +27 -0
- package/src/components/ui/accordion.tsx +66 -0
- package/src/components/ui/alert-dialog.tsx +157 -0
- package/src/components/ui/aspect-ratio.tsx +11 -0
- package/src/components/ui/badge.tsx +46 -0
- package/src/components/ui/breadcrumb.tsx +109 -0
- package/src/components/ui/button.mdx +39 -0
- package/src/components/ui/button.stories.tsx +88 -0
- package/src/components/ui/button.tsx +53 -0
- package/src/components/ui/card.tsx +92 -0
- package/src/components/ui/carousel.tsx +241 -0
- package/src/components/ui/checkbox.tsx +32 -0
- package/src/components/ui/dialog.tsx +143 -0
- package/src/components/ui/field.tsx +248 -0
- package/src/components/ui/heading.tsx +51 -0
- package/src/components/ui/icon-definitions.ts +532 -0
- package/src/components/ui/icon.tsx +115 -0
- package/src/components/ui/input-group.tsx +170 -0
- package/src/components/ui/input.tsx +21 -0
- package/src/components/ui/label.tsx +24 -0
- package/src/components/ui/native-select.tsx +48 -0
- package/src/components/ui/pagination.tsx +127 -0
- package/src/components/ui/radio-group.tsx +45 -0
- package/src/components/ui/scroll-area.tsx +58 -0
- package/src/components/ui/section-container.tsx +24 -0
- package/src/components/ui/select.tsx +187 -0
- package/src/components/ui/separator.tsx +28 -0
- package/src/components/ui/skeleton.tsx +13 -0
- package/src/components/ui/sonner.tsx +40 -0
- package/src/components/ui/switch.mdx +20 -0
- package/src/components/ui/switch.stories.tsx +54 -0
- package/src/components/ui/switch.tsx +66 -0
- package/src/components/ui/table.tsx +119 -0
- package/src/components/ui/tabs.tsx +66 -0
- package/src/components/ui/text-link.tsx +72 -0
- package/src/components/ui/text.tsx +54 -0
- package/src/components/ui/textarea.tsx +18 -0
- package/src/components/ui/toggle.tsx +47 -0
- package/src/components/ui/tooltip.tsx +61 -0
- package/src/index.ts +37 -0
- package/src/lib/utils.ts +6 -0
- package/src/styles/globals.css +162 -0
- package/src/styles/variables.css +261 -0
- package/tokens/design-tokens.tokens.json +1652 -0
- package/tokens/design-tokens.tokens/344/270/213/345/261/244.json +1659 -0
- package/tokens//345/205/250/343/203/227/343/203/255/343/202/270/343/202/247/343/202/257/343/203/210/345/205/261/351/200/232_design-tokens.tokens.json +572 -0
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
"use client"
|
|
2
|
+
|
|
3
|
+
import * as React from "react"
|
|
4
|
+
import { Slot } from "@radix-ui/react-slot"
|
|
5
|
+
import { cva, type VariantProps } from "class-variance-authority"
|
|
6
|
+
|
|
7
|
+
import { cn } from "../../lib/utils"
|
|
8
|
+
|
|
9
|
+
const textVariants = cva("text-[var(--color-color-body-text)]", {
|
|
10
|
+
variants: {
|
|
11
|
+
size: {
|
|
12
|
+
xs: "text-[length:var(--font-size-usage-caption)]",
|
|
13
|
+
sm: "text-[length:var(--font-size-usage-parts-sm)]",
|
|
14
|
+
base: "text-[length:var(--font-size-usage-default)]",
|
|
15
|
+
lg: "text-[length:var(--font-size-usage-parts-md)]",
|
|
16
|
+
xl: "text-[length:var(--font-size-usage-parts-lg)]",
|
|
17
|
+
"2xl": "text-[length:var(--font-size-usage-title-sm)]",
|
|
18
|
+
},
|
|
19
|
+
lineHeight: {
|
|
20
|
+
tight: "leading-[1.25]",
|
|
21
|
+
normal: "leading-[1.4]",
|
|
22
|
+
relaxed: "leading-[1.5]",
|
|
23
|
+
loose: "leading-[1.6]",
|
|
24
|
+
},
|
|
25
|
+
},
|
|
26
|
+
defaultVariants: {
|
|
27
|
+
size: "base",
|
|
28
|
+
lineHeight: "normal",
|
|
29
|
+
},
|
|
30
|
+
})
|
|
31
|
+
|
|
32
|
+
function Text({
|
|
33
|
+
className,
|
|
34
|
+
size,
|
|
35
|
+
lineHeight,
|
|
36
|
+
asChild = false,
|
|
37
|
+
...props
|
|
38
|
+
}: React.ComponentProps<"p"> &
|
|
39
|
+
VariantProps<typeof textVariants> & {
|
|
40
|
+
asChild?: boolean
|
|
41
|
+
}) {
|
|
42
|
+
const Comp = asChild ? Slot : "p"
|
|
43
|
+
|
|
44
|
+
return (
|
|
45
|
+
<Comp
|
|
46
|
+
data-slot="text"
|
|
47
|
+
className={cn(textVariants({ size, lineHeight }), className)}
|
|
48
|
+
{...props}
|
|
49
|
+
/>
|
|
50
|
+
)
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
export { Text, textVariants }
|
|
54
|
+
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import * as React from "react"
|
|
2
|
+
|
|
3
|
+
import { cn } from "../../lib/utils"
|
|
4
|
+
|
|
5
|
+
function Textarea({ className, ...props }: React.ComponentProps<"textarea">) {
|
|
6
|
+
return (
|
|
7
|
+
<textarea
|
|
8
|
+
data-slot="textarea"
|
|
9
|
+
className={cn(
|
|
10
|
+
"border-input placeholder:text-muted-foreground focus-visible:border-ring focus-visible:ring-ring/50 aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive dark:bg-input/30 flex field-sizing-content min-h-16 w-full rounded-md border bg-transparent px-3 py-2 text-base shadow-xs transition-[color,box-shadow] outline-none focus-visible:ring-[3px] disabled:cursor-not-allowed disabled:opacity-50 md:text-sm",
|
|
11
|
+
className
|
|
12
|
+
)}
|
|
13
|
+
{...props}
|
|
14
|
+
/>
|
|
15
|
+
)
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export { Textarea }
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
"use client"
|
|
2
|
+
|
|
3
|
+
import * as React from "react"
|
|
4
|
+
import * as TogglePrimitive from "@radix-ui/react-toggle"
|
|
5
|
+
import { cva, type VariantProps } from "class-variance-authority"
|
|
6
|
+
|
|
7
|
+
import { cn } from "../../lib/utils"
|
|
8
|
+
|
|
9
|
+
const toggleVariants = cva(
|
|
10
|
+
"inline-flex items-center justify-center gap-2 rounded-md text-sm font-medium hover:bg-muted hover:text-muted-foreground disabled:pointer-events-none disabled:opacity-50 data-[state=on]:bg-accent data-[state=on]:text-accent-foreground [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 [&_svg]:shrink-0 focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] outline-none transition-[color,box-shadow] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive whitespace-nowrap",
|
|
11
|
+
{
|
|
12
|
+
variants: {
|
|
13
|
+
variant: {
|
|
14
|
+
default: "bg-transparent",
|
|
15
|
+
outline:
|
|
16
|
+
"border border-input bg-transparent shadow-xs hover:bg-accent hover:text-accent-foreground",
|
|
17
|
+
},
|
|
18
|
+
size: {
|
|
19
|
+
default: "h-9 px-2 min-w-9",
|
|
20
|
+
sm: "h-8 px-1.5 min-w-8",
|
|
21
|
+
lg: "h-10 px-2.5 min-w-10",
|
|
22
|
+
},
|
|
23
|
+
},
|
|
24
|
+
defaultVariants: {
|
|
25
|
+
variant: "default",
|
|
26
|
+
size: "default",
|
|
27
|
+
},
|
|
28
|
+
}
|
|
29
|
+
)
|
|
30
|
+
|
|
31
|
+
function Toggle({
|
|
32
|
+
className,
|
|
33
|
+
variant,
|
|
34
|
+
size,
|
|
35
|
+
...props
|
|
36
|
+
}: React.ComponentProps<typeof TogglePrimitive.Root> &
|
|
37
|
+
VariantProps<typeof toggleVariants>) {
|
|
38
|
+
return (
|
|
39
|
+
<TogglePrimitive.Root
|
|
40
|
+
data-slot="toggle"
|
|
41
|
+
className={cn(toggleVariants({ variant, size, className }))}
|
|
42
|
+
{...props}
|
|
43
|
+
/>
|
|
44
|
+
)
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
export { Toggle, toggleVariants }
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
"use client"
|
|
2
|
+
|
|
3
|
+
import * as React from "react"
|
|
4
|
+
import * as TooltipPrimitive from "@radix-ui/react-tooltip"
|
|
5
|
+
|
|
6
|
+
import { cn } from "../../lib/utils"
|
|
7
|
+
|
|
8
|
+
function TooltipProvider({
|
|
9
|
+
delayDuration = 0,
|
|
10
|
+
...props
|
|
11
|
+
}: React.ComponentProps<typeof TooltipPrimitive.Provider>) {
|
|
12
|
+
return (
|
|
13
|
+
<TooltipPrimitive.Provider
|
|
14
|
+
data-slot="tooltip-provider"
|
|
15
|
+
delayDuration={delayDuration}
|
|
16
|
+
{...props}
|
|
17
|
+
/>
|
|
18
|
+
)
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
function Tooltip({
|
|
22
|
+
...props
|
|
23
|
+
}: React.ComponentProps<typeof TooltipPrimitive.Root>) {
|
|
24
|
+
return (
|
|
25
|
+
<TooltipProvider>
|
|
26
|
+
<TooltipPrimitive.Root data-slot="tooltip" {...props} />
|
|
27
|
+
</TooltipProvider>
|
|
28
|
+
)
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
function TooltipTrigger({
|
|
32
|
+
...props
|
|
33
|
+
}: React.ComponentProps<typeof TooltipPrimitive.Trigger>) {
|
|
34
|
+
return <TooltipPrimitive.Trigger data-slot="tooltip-trigger" {...props} />
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
function TooltipContent({
|
|
38
|
+
className,
|
|
39
|
+
sideOffset = 0,
|
|
40
|
+
children,
|
|
41
|
+
...props
|
|
42
|
+
}: React.ComponentProps<typeof TooltipPrimitive.Content>) {
|
|
43
|
+
return (
|
|
44
|
+
<TooltipPrimitive.Portal>
|
|
45
|
+
<TooltipPrimitive.Content
|
|
46
|
+
data-slot="tooltip-content"
|
|
47
|
+
sideOffset={sideOffset}
|
|
48
|
+
className={cn(
|
|
49
|
+
"bg-foreground text-background animate-in fade-in-0 zoom-in-95 data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 z-50 w-fit origin-(--radix-tooltip-content-transform-origin) rounded-md px-3 py-1.5 text-xs text-balance",
|
|
50
|
+
className
|
|
51
|
+
)}
|
|
52
|
+
{...props}
|
|
53
|
+
>
|
|
54
|
+
{children}
|
|
55
|
+
<TooltipPrimitive.Arrow className="bg-foreground fill-foreground z-50 size-2.5 translate-y-[calc(-50%_-_2px)] rotate-45 rounded-[2px]" />
|
|
56
|
+
</TooltipPrimitive.Content>
|
|
57
|
+
</TooltipPrimitive.Portal>
|
|
58
|
+
)
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
export { Tooltip, TooltipTrigger, TooltipContent, TooltipProvider }
|
package/src/index.ts
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
export * from "./components/ui/accordion"
|
|
2
|
+
export * from "./components/ui/alert-dialog"
|
|
3
|
+
export * from "./components/ui/aspect-ratio"
|
|
4
|
+
export * from "./components/ui/badge"
|
|
5
|
+
export * from "./components/ui/breadcrumb"
|
|
6
|
+
export * from "./components/ui/button"
|
|
7
|
+
export * from "./components/ui/card"
|
|
8
|
+
export * from "./components/ui/carousel"
|
|
9
|
+
export * from "./components/ui/checkbox"
|
|
10
|
+
export * from "./components/ui/dialog"
|
|
11
|
+
export * from "./components/ui/field"
|
|
12
|
+
export * from "./components/ui/heading"
|
|
13
|
+
export * from "./components/ui/icon"
|
|
14
|
+
export * from "./components/ui/input"
|
|
15
|
+
export * from "./components/ui/input-group"
|
|
16
|
+
export * from "./components/ui/label"
|
|
17
|
+
export * from "./components/ui/native-select"
|
|
18
|
+
export * from "./components/ui/pagination"
|
|
19
|
+
export * from "./components/ui/radio-group"
|
|
20
|
+
export * from "./components/ui/scroll-area"
|
|
21
|
+
export * from "./components/ui/section-container"
|
|
22
|
+
export * from "./components/ui/select"
|
|
23
|
+
export * from "./components/ui/separator"
|
|
24
|
+
export * from "./components/ui/skeleton"
|
|
25
|
+
export * from "./components/ui/sonner"
|
|
26
|
+
export * from "./components/ui/switch"
|
|
27
|
+
export * from "./components/ui/table"
|
|
28
|
+
export * from "./components/ui/tabs"
|
|
29
|
+
export * from "./components/ui/text"
|
|
30
|
+
export * from "./components/ui/text-link"
|
|
31
|
+
export * from "./components/ui/textarea"
|
|
32
|
+
export * from "./components/ui/toggle"
|
|
33
|
+
export * from "./components/ui/tooltip"
|
|
34
|
+
|
|
35
|
+
export * from "./components/shared/gap"
|
|
36
|
+
export * from "./components/shared/page-header"
|
|
37
|
+
export * from "./components/shared/page-top-button"
|
package/src/lib/utils.ts
ADDED
|
@@ -0,0 +1,162 @@
|
|
|
1
|
+
@import "tailwindcss";
|
|
2
|
+
@import "tw-animate-css";
|
|
3
|
+
@import "./variables.css";
|
|
4
|
+
|
|
5
|
+
@custom-variant dark (&:is(.dark *));
|
|
6
|
+
|
|
7
|
+
:root {
|
|
8
|
+
--font-sans: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Helvetica Neue", system-ui,
|
|
9
|
+
sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
10
|
+
|
|
11
|
+
/* Shadcn/ui base variables */
|
|
12
|
+
--background: var(--white); /* アプリ全体のデフォルト背景色 */
|
|
13
|
+
--foreground: var(--body-text); /* 標準テキストカラー */
|
|
14
|
+
--card: var(--white); /* カードコンポーネントの背景色 */
|
|
15
|
+
--card-foreground: var(--body-text); /* カード内テキストの色 */
|
|
16
|
+
--popover: var(--white); /* ポップオーバーの背景色 */
|
|
17
|
+
--popover-foreground: var(--body-text); /* ポップオーバー内テキストの色 */
|
|
18
|
+
--primary: var(--theme); /* プライマリ要素の基調カラー */
|
|
19
|
+
--primary-foreground: var(--white); /* プライマリ要素上のテキスト色 */
|
|
20
|
+
--secondary: var(--primitive-neutral-200); /* セカンダリ要素の背景色 */
|
|
21
|
+
--secondary-foreground: var(--body-text); /* セカンダリ要素上のテキスト色 */
|
|
22
|
+
--muted: var(--usage-background); /* ミュート領域の背景色 */
|
|
23
|
+
--muted-foreground: var(--primitive-neutral-700); /* ミュート領域のテキスト色 */
|
|
24
|
+
--accent: var(--primitive-accent-500); /* アクセント領域の背景色 */
|
|
25
|
+
--accent-foreground: var(--white); /* アクセント領域上のテキスト色 */
|
|
26
|
+
--destructive: var(--usage-button-destructive); /* 破壊的アクションの背景色 */
|
|
27
|
+
--destructive-foreground: var(--white); /* 破壊的アクション上のテキスト色 */
|
|
28
|
+
--border: var(--usage-border); /* デフォルトのボーダーカラー */
|
|
29
|
+
--input: var(--usage-form-border); /* フォーム入力のボーダーカラー */
|
|
30
|
+
--ring: var(--usage-form-focus-border); /* フォーカスリングのカラー */
|
|
31
|
+
--radius: var(--usage-card); /* コンポーネントの角丸半径 */
|
|
32
|
+
--chart-1: var(--usage-calendar-01); /* チャート用カラーパレット1 */
|
|
33
|
+
--chart-2: var(--usage-calendar-02); /* チャート用カラーパレット2 */
|
|
34
|
+
--chart-3: var(--usage-calendar-03); /* チャート用カラーパレット3 */
|
|
35
|
+
--chart-4: var(--usage-calendar-04); /* チャート用カラーパレット4 */
|
|
36
|
+
--chart-5: var(--usage-calendar-05); /* チャート用カラーパレット5 */
|
|
37
|
+
--sidebar: var(--primitive-neutral-050); /* サイドバーの背景色 */
|
|
38
|
+
--sidebar-foreground: var(--body-text); /* サイドバー内のテキスト色 */
|
|
39
|
+
--sidebar-primary: var(--theme); /* サイドバー内のプライマリ色 */
|
|
40
|
+
--sidebar-primary-foreground: var(--white); /* サイドバーのプライマリ上テキスト色 */
|
|
41
|
+
--sidebar-accent: var(--primitive-neutral-100); /* サイドバー内アクセント背景色 */
|
|
42
|
+
--sidebar-accent-foreground: var(--body-text); /* サイドバーアクセント上テキスト色 */
|
|
43
|
+
--sidebar-border: var(--usage-border); /* サイドバーのボーダーカラー */
|
|
44
|
+
--sidebar-ring: var(--usage-form-focus-border); /* サイドバー要素のフォーカスリング色 */
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
@theme inline {
|
|
48
|
+
/* Colors - Design tokens mapping */
|
|
49
|
+
--color-background: var(--background); /* Tailwind変数として使用する背景色 */
|
|
50
|
+
--color-foreground: var(--foreground); /* Tailwind変数として使用する前景色 */
|
|
51
|
+
--color-card: var(--card); /* カード用背景のTailwindマップ */
|
|
52
|
+
--color-card-foreground: var(--card-foreground); /* カード内テキスト用Tailwindマップ */
|
|
53
|
+
--color-popover: var(--popover); /* ポップオーバー用背景のTailwindマップ */
|
|
54
|
+
--color-popover-foreground: var(--popover-foreground); /* ポップオーバー内テキスト用マップ */
|
|
55
|
+
--color-primary: var(--primary); /* プライマリ色のTailwindマップ */
|
|
56
|
+
--color-primary-foreground: var(--primary-foreground); /* プライマリ上のテキスト色マップ */
|
|
57
|
+
--color-secondary: var(--secondary); /* セカンダリ色のTailwindマップ */
|
|
58
|
+
--color-secondary-foreground: var(--secondary-foreground); /* セカンダリ上のテキスト色マップ */
|
|
59
|
+
--color-muted: var(--muted); /* ミュート背景のTailwindマップ */
|
|
60
|
+
--color-muted-foreground: var(--muted-foreground); /* ミュートテキスト色のマップ */
|
|
61
|
+
--color-accent: var(--accent); /* アクセント色のTailwindマップ */
|
|
62
|
+
--color-accent-foreground: var(--accent-foreground); /* アクセント上のテキスト色マップ */
|
|
63
|
+
--color-destructive: var(--destructive); /* 破壊的アクション色のTailwindマップ */
|
|
64
|
+
--color-destructive-foreground: var(--destructive-foreground); /* 破壊的アクション上のテキスト色マップ */
|
|
65
|
+
--color-border: var(--border); /* コンポーネント境界色のマップ */
|
|
66
|
+
--color-input: var(--input); /* 入力ボーダー色のTailwindマップ */
|
|
67
|
+
--color-ring: var(--ring); /* フォーカスリング色のTailwindマップ */
|
|
68
|
+
--color-chart-1: var(--chart-1); /* チャート配色1のTailwindマップ */
|
|
69
|
+
--color-chart-2: var(--chart-2); /* チャート配色2のTailwindマップ */
|
|
70
|
+
--color-chart-3: var(--chart-3); /* チャート配色3のTailwindマップ */
|
|
71
|
+
--color-chart-4: var(--chart-4); /* チャート配色4のTailwindマップ */
|
|
72
|
+
--color-chart-5: var(--chart-5); /* チャート配色5のTailwindマップ */
|
|
73
|
+
--color-sidebar: var(--sidebar); /* サイドバー背景のTailwindマップ */
|
|
74
|
+
--color-sidebar-foreground: var(--sidebar-foreground); /* サイドバーテキスト色のマップ */
|
|
75
|
+
--color-sidebar-primary: var(--sidebar-primary); /* サイドバープライマリ色のマップ */
|
|
76
|
+
--color-sidebar-primary-foreground: var(--sidebar-primary-foreground); /* サイドバープライマリ上テキスト色マップ */
|
|
77
|
+
--color-sidebar-accent: var(--sidebar-accent); /* サイドバーアクセント色のマップ */
|
|
78
|
+
--color-sidebar-accent-foreground: var(--sidebar-accent-foreground); /* サイドバーアクセント上テキスト色マップ */
|
|
79
|
+
--color-sidebar-border: var(--sidebar-border); /* サイドバー境界色のマップ */
|
|
80
|
+
--color-sidebar-ring: var(--sidebar-ring); /* サイドバーフォーカスリング色のマップ */
|
|
81
|
+
|
|
82
|
+
/* Border radius */
|
|
83
|
+
--radius-xs: var(--primitive-radius-radius-2); /* rounded-xs 用角丸 */
|
|
84
|
+
--radius-sm: var(--primitive-radius-radius-4); /* rounded-sm 用角丸 */
|
|
85
|
+
--radius-md: var(--primitive-radius-radius-8); /* rounded-md 用角丸 */
|
|
86
|
+
--radius-lg: var(--primitive-radius-radius-12); /* rounded-lg 用角丸 */
|
|
87
|
+
--radius-xl: var(--primitive-radius-radius-16); /* rounded-xl 用角丸 */
|
|
88
|
+
--radius-2xl: var(--primitive-radius-radius-24); /* rounded-2xl 用角丸 */
|
|
89
|
+
--radius-3xl: var(--primitive-radius-radius-32); /* rounded-3xl 用角丸 */
|
|
90
|
+
--radius-4xl: var(--primitive-radius-radius-999); /* rounded-4xl 用角丸 */
|
|
91
|
+
--radius-full: var(--primitive-radius-radius-999); /* rounded-full 用角丸 */
|
|
92
|
+
|
|
93
|
+
/* Spacing scale */
|
|
94
|
+
--spacing: var(--primitive-spacing-spacing-4); /* spacing base (1 = 0.4rem) */
|
|
95
|
+
--spacing-px: 1px; /* spacing px 用 */
|
|
96
|
+
--spacing-0: 0; /* spacing 0 用 */
|
|
97
|
+
--spacing-0\.5: calc(var(--spacing) / 2); /* spacing 0.5 用 */
|
|
98
|
+
--spacing-1: var(--spacing); /* spacing 1 用 */
|
|
99
|
+
--spacing-1\.5: calc(var(--spacing) * 1.5); /* spacing 1.5 用 */
|
|
100
|
+
--spacing-2: var(--primitive-spacing-spacing-8); /* spacing 2 用 */
|
|
101
|
+
--spacing-2\.5: calc(var(--primitive-spacing-spacing-8) * 1.25); /* spacing 2.5 用 */
|
|
102
|
+
--spacing-3: var(--primitive-spacing-spacing-12); /* spacing 3 用 */
|
|
103
|
+
--spacing-3\.5: calc(var(--primitive-spacing-spacing-12) * 1.1666666667); /* spacing 3.5 用 */
|
|
104
|
+
--spacing-4: var(--primitive-spacing-spacing-16); /* spacing 4 用 */
|
|
105
|
+
--spacing-5: var(--primitive-spacing-spacing-24); /* spacing 5 用 */
|
|
106
|
+
--spacing-6: var(--primitive-spacing-spacing-32); /* spacing 6 用 */
|
|
107
|
+
--spacing-7: calc(var(--primitive-spacing-spacing-32) * 1.25); /* spacing 7 用 */
|
|
108
|
+
--spacing-8: var(--primitive-spacing-spacing-40); /* spacing 8 用 */
|
|
109
|
+
--spacing-9: calc(var(--primitive-spacing-spacing-40) * 1.125); /* spacing 9 用 */
|
|
110
|
+
--spacing-10: var(--primitive-spacing-spacing-48); /* spacing 10 用 */
|
|
111
|
+
--spacing-11: calc(var(--primitive-spacing-spacing-48) * 1.125); /* spacing 11 用 */
|
|
112
|
+
--spacing-12: var(--primitive-spacing-spacing-56); /* spacing 12 用 */
|
|
113
|
+
--spacing-14: var(--primitive-spacing-spacing-64); /* spacing 14 用 */
|
|
114
|
+
--spacing-16: var(--primitive-spacing-spacing-72); /* spacing 16 用 */
|
|
115
|
+
--spacing-20: var(--primitive-spacing-spacing-96); /* spacing 20 用 */
|
|
116
|
+
--spacing-24: var(--primitive-spacing-spacing-120); /* spacing 24 用 */
|
|
117
|
+
--spacing-28: calc(var(--primitive-spacing-spacing-120) * 1.1666666667); /* spacing 28 用 */
|
|
118
|
+
--spacing-32: calc(var(--spacing-24) + var(--spacing-8)); /* spacing 32 用 */
|
|
119
|
+
--spacing-36: calc(var(--spacing-32) + var(--spacing-4)); /* spacing 36 用 */
|
|
120
|
+
--spacing-40: var(--usage-contents-column-gap); /* spacing 40 用 */
|
|
121
|
+
--spacing-44: calc(var(--spacing-40) + var(--spacing-4)); /* spacing 44 用 */
|
|
122
|
+
--spacing-48: calc(var(--spacing-32) + var(--spacing-16)); /* spacing 48 用 */
|
|
123
|
+
--spacing-52: calc(var(--spacing-48) + var(--spacing-4)); /* spacing 52 用 */
|
|
124
|
+
--spacing-56: var(--usage-section-padding); /* spacing 56 用 */
|
|
125
|
+
--spacing-60: calc(var(--spacing-56) + var(--spacing-4)); /* spacing 60 用 */
|
|
126
|
+
--spacing-64: var(--usage-table-column-gap); /* spacing 64 用 */
|
|
127
|
+
--spacing-72: calc(var(--spacing-64) + var(--spacing-8)); /* spacing 72 用 */
|
|
128
|
+
--spacing-80: calc(var(--spacing-64) + var(--spacing-16)); /* spacing 80 用 */
|
|
129
|
+
--spacing-96: var(--usage-contents-row-gap-nodivider); /* spacing 96 用 */
|
|
130
|
+
|
|
131
|
+
/* Font sizes - Design tokens override */
|
|
132
|
+
--text-xs: var(--font-size-usage-caption); /* 1.2rem */
|
|
133
|
+
--text-sm: var(--font-size-usage-parts-sm); /* 1.2rem */
|
|
134
|
+
--text-base: var(--font-size-usage-default); /* 1.4rem */
|
|
135
|
+
--text-lg: var(--font-size-usage-parts-md); /* 1.4rem */
|
|
136
|
+
--text-xl: var(--font-size-usage-parts-lg); /* 1.6rem */
|
|
137
|
+
--text-2xl: var(--font-size-usage-title-sm); /* 1.6rem */
|
|
138
|
+
--text-3xl: var(--font-size-usage-title-md); /* 2rem */
|
|
139
|
+
--text-4xl: var(--font-size-usage-title-lg); /* 2.4rem */
|
|
140
|
+
--text-5xl: var(--font-size-usage-pagetitle); /* 2.8rem */
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
@layer base {
|
|
144
|
+
html {
|
|
145
|
+
font-size: 62.5%;
|
|
146
|
+
scroll-behavior: smooth;
|
|
147
|
+
scroll-padding-top: 24rem;
|
|
148
|
+
}
|
|
149
|
+
body {
|
|
150
|
+
font-size: var(--font-size-usage-default);
|
|
151
|
+
color: var(--body-text);
|
|
152
|
+
background-color: var(--white);
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
button,
|
|
156
|
+
input[type='checkbox'],
|
|
157
|
+
input[type='radio'],
|
|
158
|
+
select {
|
|
159
|
+
cursor: pointer;
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
|
|
@@ -0,0 +1,261 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Do not edit directly, this file was auto-generated.
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
:root {
|
|
6
|
+
--primitive-neutral-100: #f5f6f6;
|
|
7
|
+
--primitive-neutral-200: #eceded;
|
|
8
|
+
--primitive-neutral-300: #e0e2e3;
|
|
9
|
+
--primitive-neutral-400: #ced1d2;
|
|
10
|
+
--primitive-neutral-500: #b2b6b8;
|
|
11
|
+
--primitive-neutral-600: #959b9d;
|
|
12
|
+
--primitive-neutral-700: #636b6f;
|
|
13
|
+
--primitive-neutral-800: #3e484d;
|
|
14
|
+
--primitive-neutral-900: #303538;
|
|
15
|
+
--primitive-neutral-050: #f9fafa;
|
|
16
|
+
--primitive-primary-100: #e8fafe;
|
|
17
|
+
--primitive-primary-200: #dbf6fc;
|
|
18
|
+
--primitive-primary-300: #baf1fd;
|
|
19
|
+
--primitive-primary-400: #84e0f8;
|
|
20
|
+
--primitive-primary-500: #51c9e9;
|
|
21
|
+
--primitive-primary-600: #14b2dd;
|
|
22
|
+
--primitive-primary-700: #099ece;
|
|
23
|
+
--primitive-primary-800: #008ec1;
|
|
24
|
+
--primitive-primary-900: #0079a5;
|
|
25
|
+
--primitive-primary-050: #f5feff;
|
|
26
|
+
--primitive-secondary-100: #e3eaf2;
|
|
27
|
+
--primitive-secondary-200: #d5dfeb;
|
|
28
|
+
--primitive-secondary-300: #c7d4e4;
|
|
29
|
+
--primitive-secondary-400: #abbfd6;
|
|
30
|
+
--primitive-secondary-500: #8ea9c8;
|
|
31
|
+
--primitive-secondary-600: #6489b4;
|
|
32
|
+
--primitive-secondary-700: #406ea3;
|
|
33
|
+
--primitive-secondary-800: #1c5291;
|
|
34
|
+
--primitive-secondary-900: #19487f;
|
|
35
|
+
--primitive-secondary-050: #f1f5f9;
|
|
36
|
+
--primitive-accent-100: #e1f9f9;
|
|
37
|
+
--primitive-accent-200: #c5f0f0;
|
|
38
|
+
--primitive-accent-300: #99e4e5;
|
|
39
|
+
--primitive-accent-400: #64d5d6;
|
|
40
|
+
--primitive-accent-500: #14bebf;
|
|
41
|
+
--primitive-accent-600: #0aaeaf;
|
|
42
|
+
--primitive-accent-700: #009e9e;
|
|
43
|
+
--primitive-accent-800: #009191;
|
|
44
|
+
--primitive-accent-900: #008383;
|
|
45
|
+
--primitive-accent-050: #effbfb;
|
|
46
|
+
--primitive-success-100: #e9fac8;
|
|
47
|
+
--primitive-success-200: #bdea6d;
|
|
48
|
+
--primitive-success-300: #82cd17;
|
|
49
|
+
--primitive-success-400: #5ea500;
|
|
50
|
+
--primitive-success-500: #4e8500;
|
|
51
|
+
--primitive-warning-100: #fff4cc;
|
|
52
|
+
--primitive-warning-200: #ffe893;
|
|
53
|
+
--primitive-warning-300: #ffd84a;
|
|
54
|
+
--primitive-warning-400: #ffc700;
|
|
55
|
+
--primitive-warning-500: #dd9200;
|
|
56
|
+
--primitive-danger-100: #ffeae7;
|
|
57
|
+
--primitive-danger-200: #ffd4ce;
|
|
58
|
+
--primitive-danger-300: #f89789;
|
|
59
|
+
--primitive-danger-400: #e6533e;
|
|
60
|
+
--primitive-danger-500: #da3520;
|
|
61
|
+
--primitive-functional-10: #666666;
|
|
62
|
+
--primitive-functional-10-opacity: rgba(102, 102, 102, 0);
|
|
63
|
+
--primitive-functional-09-opacity: rgba(149, 99, 58, 0);
|
|
64
|
+
--primitive-functional-08-opacity: rgba(172, 93, 164, 0);
|
|
65
|
+
--primitive-functional-07-opacity: rgba(53, 102, 172, 0);
|
|
66
|
+
--primitive-functional-06-opacity: rgba(7, 142, 216, 0);
|
|
67
|
+
--primitive-functional-05-opacity: rgba(6, 185, 186, 0);
|
|
68
|
+
--primitive-functional-07: #3566ac;
|
|
69
|
+
--primitive-functional-06: #078ed8;
|
|
70
|
+
--primitive-functional-04-opacity: rgba(23, 161, 76, 0);
|
|
71
|
+
--primitive-functional-04: #17a14c;
|
|
72
|
+
--primitive-functional-03-opacity: rgba(107, 188, 26, 0);
|
|
73
|
+
--primitive-functional-09: #95633a;
|
|
74
|
+
--primitive-functional-03: #6bbc1a;
|
|
75
|
+
--primitive-functional-02-opacity: rgba(234, 152, 21, 0);
|
|
76
|
+
--primitive-functional-05: #06b9ba;
|
|
77
|
+
--primitive-functional-02: #ea9815;
|
|
78
|
+
--primitive-functional-01-opacity: rgba(226, 101, 101, 0);
|
|
79
|
+
--primitive-functional-08: #ac5da4;
|
|
80
|
+
--primitive-functional-01: #e26565;
|
|
81
|
+
--usage-status-optional: #636b6f;
|
|
82
|
+
--usage-status-ok: #82cd17;
|
|
83
|
+
--usage-status-required: #e6533e;
|
|
84
|
+
--usage-overlay-default-60: rgba(0, 0, 0, 0.6);
|
|
85
|
+
--usage-overlay-default-20: rgba(0, 0, 0, 0.2);
|
|
86
|
+
--usage-form-error-text: #da3520;
|
|
87
|
+
--usage-form-focus-0: rgba(132, 224, 248, 0);
|
|
88
|
+
--usage-form-focus-20: rgba(132, 224, 248, 0.2);
|
|
89
|
+
--usage-form-focus-40: rgba(132, 224, 248, 0.4);
|
|
90
|
+
--usage-form-error-border: #f89789;
|
|
91
|
+
--usage-form-default-bg: #f5f6f6;
|
|
92
|
+
--usage-form-border: #b2b6b8;
|
|
93
|
+
--usage-form-icon-sub: #b2b6b8;
|
|
94
|
+
--usage-form-disabled-bg: #e0e2e3;
|
|
95
|
+
--usage-form-border-sub: #ced1d2;
|
|
96
|
+
--usage-form-error-bg: #ffeae7;
|
|
97
|
+
--usage-form-icon-main: #636b6f;
|
|
98
|
+
--usage-form-focus-border: #84e0f8;
|
|
99
|
+
--usage-form-placeholder: #b2b6b8;
|
|
100
|
+
--usage-opacity-textlink-hover: 4rem;
|
|
101
|
+
--usage-opacity-disabled: 3rem;
|
|
102
|
+
--usage-border: #e0e2e3;
|
|
103
|
+
--usage-button-primary: #008ec1;
|
|
104
|
+
--usage-button-primary-hover: #1c5291;
|
|
105
|
+
--usage-button-disabled: #b2b6b8;
|
|
106
|
+
--usage-button-accent: #009191;
|
|
107
|
+
--usage-button-accent-hover: #006b6b;
|
|
108
|
+
--usage-button-destructive: #e6533e;
|
|
109
|
+
--usage-button-destructive-hover: #c01600;
|
|
110
|
+
--usage-section-border: #ced1d2;
|
|
111
|
+
--usage-background: #f5f6f6;
|
|
112
|
+
--usage-table-bg: #f5f6f6;
|
|
113
|
+
--usage-table-hover: #e8fafe;
|
|
114
|
+
--usage-calendar-01: #e26565;
|
|
115
|
+
--usage-calendar-others: #666666;
|
|
116
|
+
--usage-calendar-02: #ea9815;
|
|
117
|
+
--usage-calendar-03: #6bbc1a;
|
|
118
|
+
--usage-calendar-04: #17a14c;
|
|
119
|
+
--usage-calendar-05: #06b9ba;
|
|
120
|
+
--usage-calendar-07: #3566ac;
|
|
121
|
+
--usage-calendar-08: #ac5da4;
|
|
122
|
+
--usage-calendar-09: #95633a;
|
|
123
|
+
--usage-calendar-06: #078ed8;
|
|
124
|
+
--usage-calendar-01-opacity: rgba(226, 101, 101, 0);
|
|
125
|
+
--usage-calendar-02-opacity: rgba(234, 152, 21, 0);
|
|
126
|
+
--usage-calendar-03-opacity: rgba(107, 188, 26, 0);
|
|
127
|
+
--usage-calendar-04-opacity: rgba(23, 161, 76, 0);
|
|
128
|
+
--usage-calendar-05-opacity: rgba(6, 185, 186, 0);
|
|
129
|
+
--usage-calendar-06-opacity: rgba(7, 142, 216, 0);
|
|
130
|
+
--usage-calendar-07-opacity: rgba(53, 102, 172, 0);
|
|
131
|
+
--usage-calendar-08-opacity: rgba(172, 93, 164, 0);
|
|
132
|
+
--usage-calendar-09-opacity: rgba(149, 99, 58, 0);
|
|
133
|
+
--usage-calendar-others-opacity: rgba(102, 102, 102, 0);
|
|
134
|
+
--usage-calendar-today-bg: #fffae4;
|
|
135
|
+
--usage-calendar-sat: #008ec1;
|
|
136
|
+
--usage-calendar-sun: #e6533e;
|
|
137
|
+
--usage-calendar-cancel-bg: #eceded;
|
|
138
|
+
--usage-calendar-cancel-text: #959b9d;
|
|
139
|
+
--usage-active-border: #84e0f8;
|
|
140
|
+
--usage-active-bg: #e8fafe;
|
|
141
|
+
--usage-preview-bg: #f9fafa;
|
|
142
|
+
--usage-active-bg-0: rgba(232, 250, 254, 0);
|
|
143
|
+
--usage-card-bg: #f5f6f6;
|
|
144
|
+
--usage-icon-neutral: #636b6f;
|
|
145
|
+
--usage-icon-neutral-disabled: #ced1d2;
|
|
146
|
+
--white: #ffffff;
|
|
147
|
+
--neutral-850: #373f43;
|
|
148
|
+
--body-text: #303538;
|
|
149
|
+
--theme: #008ec1;
|
|
150
|
+
--text-link: #0074ad;
|
|
151
|
+
--font-weight-bold: Bold;
|
|
152
|
+
--font-weight-regular: Regular;
|
|
153
|
+
--font-weight-extrabold: ExtraBold;
|
|
154
|
+
--font-family-number: Roboto;
|
|
155
|
+
--font-family-default: Noto Sans JP;
|
|
156
|
+
--font-family-price: Sofia Sans Condensed;
|
|
157
|
+
--font-family-information: A P-OTF UD Shin Go Pr6N;
|
|
158
|
+
--font-size-usage-pagetitle: 2.8rem;
|
|
159
|
+
--font-size-usage-title-lg: 2.4rem;
|
|
160
|
+
--font-size-usage-title-md: 2rem;
|
|
161
|
+
--font-size-usage-title-sm: 1.6rem;
|
|
162
|
+
--font-size-usage-default: 1.4rem;
|
|
163
|
+
--font-size-usage-parts-md: 1.4rem;
|
|
164
|
+
--font-size-usage-parts-lg: 1.6rem;
|
|
165
|
+
--font-size-usage-parts-sm: 1.2rem;
|
|
166
|
+
--font-size-usage-caption: 1.2rem;
|
|
167
|
+
--font-size-usage-pagetitle-header: 2rem;
|
|
168
|
+
--font-size-alphanumeric-lg: 2rem;
|
|
169
|
+
--font-size-alphanumeric-md: 1.6rem;
|
|
170
|
+
--usage-floating: 1.6rem;
|
|
171
|
+
--usage-section-flame: 1.6rem;
|
|
172
|
+
--usage-modal-window: 1.6rem;
|
|
173
|
+
--usage-card: 0.8rem;
|
|
174
|
+
--usage-list-parts: 1.2rem;
|
|
175
|
+
--usage-table: 1.6rem;
|
|
176
|
+
--usage-tooltip: 0.4rem;
|
|
177
|
+
--usage-form: 0.4rem;
|
|
178
|
+
--usage-menu: 0.4rem;
|
|
179
|
+
--usage-timeline: 0.4rem;
|
|
180
|
+
--usage-button-s: 0.4rem;
|
|
181
|
+
--usage-button-m: 0.6rem;
|
|
182
|
+
--xl: 1.6rem;
|
|
183
|
+
--lg: 1.2rem;
|
|
184
|
+
--md: 0.8rem;
|
|
185
|
+
--sm: 0.6rem;
|
|
186
|
+
--xs: 0.4rem;
|
|
187
|
+
--usage-section-row-gap: 1.6rem;
|
|
188
|
+
--usage-contents-row-gap: 0.8rem;
|
|
189
|
+
--usage-page-row-gap: 1.6rem;
|
|
190
|
+
--usage-contents-column-gap: 2.4rem;
|
|
191
|
+
--usage-section-column-gap: 1.6rem;
|
|
192
|
+
--usage-page-padding: 1.6rem;
|
|
193
|
+
--usage-page-column-gap: 1.6rem;
|
|
194
|
+
--usage-section-padding: 2.4rem;
|
|
195
|
+
--usage-title-l-bottom: 2.4rem;
|
|
196
|
+
--usage-title-m-bottom: 1.6rem;
|
|
197
|
+
--usage-section-m-gap: 4.8rem;
|
|
198
|
+
--usage-section-l-gap: 8rem;
|
|
199
|
+
--usage-paragraph-gap: 1.6rem;
|
|
200
|
+
--usage-contents-row-gap-nodivider: 4.8rem;
|
|
201
|
+
--usage-form-column-gap-xs: 0.4rem;
|
|
202
|
+
--usage-form-column-gap-xl: 4.8rem;
|
|
203
|
+
--usage-form-column-gap-md: 1.6rem;
|
|
204
|
+
--usage-form-column-gap-sm: 0.8rem;
|
|
205
|
+
--usage-form-column-gap-lg: 2.4rem;
|
|
206
|
+
--usage-table-column-gap: 6.4rem;
|
|
207
|
+
--usage-modal-padding: 3.2rem;
|
|
208
|
+
--parts-gap-column-sm: 0.8rem;
|
|
209
|
+
--parts-gap-column-md: 1.6rem;
|
|
210
|
+
--parts-gap-column-lg: 2.4rem;
|
|
211
|
+
--parts-gap-column-xl: 3.2rem;
|
|
212
|
+
--parts-gap-column-xs: 0.4rem;
|
|
213
|
+
--parts-gap-row-sm: 0.8rem;
|
|
214
|
+
--parts-gap-row-md: 1.6rem;
|
|
215
|
+
--parts-gap-row-xs: 0.4rem;
|
|
216
|
+
--parts-gap-row-xl: 3.2rem;
|
|
217
|
+
--parts-gap-column-2xs: 0.2rem;
|
|
218
|
+
--parts-gap-column-2xl: 4.8rem;
|
|
219
|
+
--parts-gap-row-lg: 2.4rem;
|
|
220
|
+
--primitive-spacing-spacing-2: 0.2rem;
|
|
221
|
+
--primitive-spacing-spacing-4: 0.4rem;
|
|
222
|
+
--primitive-spacing-spacing-6: 0.6rem;
|
|
223
|
+
--primitive-spacing-spacing-8: 0.8rem;
|
|
224
|
+
--primitive-spacing-spacing-12: 1.2rem;
|
|
225
|
+
--primitive-spacing-spacing-16: 1.6rem;
|
|
226
|
+
--primitive-spacing-spacing-24: 2.4rem;
|
|
227
|
+
--primitive-spacing-spacing-32: 3.2rem;
|
|
228
|
+
--primitive-spacing-spacing-40: 4rem;
|
|
229
|
+
--primitive-spacing-spacing-48: 4.8rem;
|
|
230
|
+
--primitive-spacing-spacing-56: 5.6rem;
|
|
231
|
+
--primitive-spacing-spacing-64: 6.4rem;
|
|
232
|
+
--primitive-spacing-spacing-72: 7.2rem;
|
|
233
|
+
--primitive-spacing-spacing-80: 8rem;
|
|
234
|
+
--primitive-spacing-spacing-96: 9.6rem;
|
|
235
|
+
--primitive-spacing-spacing-120: 12rem;
|
|
236
|
+
--primitive-spacing-spacing-200: 20rem;
|
|
237
|
+
--primitive-radius-radius-2: 0.2rem;
|
|
238
|
+
--primitive-radius-radius-4: 0.4rem;
|
|
239
|
+
--primitive-radius-radius-6: 0.6rem;
|
|
240
|
+
--primitive-radius-radius-12: 1.2rem;
|
|
241
|
+
--primitive-radius-radius-16: 1.6rem;
|
|
242
|
+
--primitive-radius-radius-999: 99.9rem;
|
|
243
|
+
--primitive-radius-radius-24: 2.4rem;
|
|
244
|
+
--primitive-radius-radius-32: 3.2rem;
|
|
245
|
+
--primitive-radius-radius-8: 0.8rem;
|
|
246
|
+
--primitive-fontsize-fontsize-8: 0.8rem;
|
|
247
|
+
--primitive-fontsize-fontsize-10: 1rem;
|
|
248
|
+
--primitive-fontsize-fontsize-12: 1.2rem;
|
|
249
|
+
--primitive-fontsize-fontsize-14: 1.4rem;
|
|
250
|
+
--primitive-fontsize-fontsize-16: 1.6rem;
|
|
251
|
+
--primitive-fontsize-fontsize-18: 1.8rem;
|
|
252
|
+
--primitive-fontsize-fontsize-20: 2rem;
|
|
253
|
+
--primitive-fontsize-fontsize-22: 2.2rem;
|
|
254
|
+
--primitive-fontsize-fontsize-24: 2.4rem;
|
|
255
|
+
--primitive-fontsize-fontsize-28: 2.8rem;
|
|
256
|
+
--primitive-fontsize-fontsize-32: 3.2rem;
|
|
257
|
+
--primitive-fontsize-fontsize-40: 4rem;
|
|
258
|
+
--primitive-fontsize-fontsize-48: 4.8rem;
|
|
259
|
+
--primitive-fontsize-fontsize-36: 3.6rem;
|
|
260
|
+
}
|
|
261
|
+
|