@nurihaus/web-design-system 1.4.45 → 1.4.46
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/dist/components/tabs/base-tabs.d.ts +11 -0
- package/dist/components/tabs/tabs-props.d.ts +9 -0
- package/dist/components/tabs/tabs-type.d.ts +40 -0
- package/dist/components/tabs/tabs.d.ts +7 -0
- package/dist/components/tabs/tabs.stories.d.ts +23 -0
- package/package.json +3 -2
- package/styles/align-items.css +19 -0
- package/styles/display.css +31 -0
- package/styles/flex-direction.css +15 -0
- package/styles/index.css +33 -0
- package/styles/justify-content.css +23 -0
- package/styles/overflow.css +47 -0
- package/styles/position.css +19 -0
- package/styles/reset.css +52 -0
- package/styles/token/color.css +119 -0
- package/styles/token/colors.ts +105 -0
- package/styles/token/cursor.css +5 -0
- package/styles/token/font.css +56 -0
- package/styles/token/radius.css +6 -0
- package/styles/token/space.css +13 -0
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { PropsWithChildren } from 'react';
|
|
2
|
+
import { TabsContentProps, TabsIndicatorProps, TabsListProps, TabsRootProps, TabsTriggerProps } from './tabs-type';
|
|
3
|
+
declare const TabsRoot: {
|
|
4
|
+
(props: PropsWithChildren<TabsRootProps>): import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
List: (props: PropsWithChildren<TabsListProps>) => import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
Trigger: (props: PropsWithChildren<TabsTriggerProps>) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
Content: (props: PropsWithChildren<TabsContentProps>) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
Indicator: (props: TabsIndicatorProps) => import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
};
|
|
10
|
+
export default TabsRoot;
|
|
11
|
+
export type { TabsRootProps, TabsListProps, TabsTriggerProps, TabsContentProps, TabsIndicatorProps };
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import type { ComponentPropsWithRef, ReactNode, CSSProperties } from 'react';
|
|
2
|
+
export type TabsValue = string | null;
|
|
3
|
+
export type TabsVariant = 'underline' | 'filled';
|
|
4
|
+
export interface TabsItem {
|
|
5
|
+
id: string;
|
|
6
|
+
label: ReactNode;
|
|
7
|
+
content: ReactNode;
|
|
8
|
+
disabled?: boolean;
|
|
9
|
+
leftIcon?: ReactNode;
|
|
10
|
+
}
|
|
11
|
+
export interface TabsProps {
|
|
12
|
+
items: TabsItem[];
|
|
13
|
+
variant?: TabsVariant;
|
|
14
|
+
value?: TabsValue;
|
|
15
|
+
defaultValue?: TabsValue;
|
|
16
|
+
onValueChange?: (id: TabsValue) => void;
|
|
17
|
+
className?: string;
|
|
18
|
+
style?: CSSProperties;
|
|
19
|
+
}
|
|
20
|
+
export interface TabsRootProps {
|
|
21
|
+
value?: TabsValue;
|
|
22
|
+
defaultValue?: TabsValue;
|
|
23
|
+
onValueChange?: (id: TabsValue) => void;
|
|
24
|
+
className?: string;
|
|
25
|
+
}
|
|
26
|
+
export interface TabsListProps extends ComponentPropsWithRef<'div'> {
|
|
27
|
+
asChild?: boolean;
|
|
28
|
+
}
|
|
29
|
+
export interface TabsTriggerProps extends Omit<ComponentPropsWithRef<'button'>, 'value'> {
|
|
30
|
+
asChild?: boolean;
|
|
31
|
+
id: string;
|
|
32
|
+
disabled?: boolean;
|
|
33
|
+
}
|
|
34
|
+
export interface TabsContentProps extends Omit<ComponentPropsWithRef<'div'>, 'value'> {
|
|
35
|
+
asChild?: boolean;
|
|
36
|
+
id: string;
|
|
37
|
+
}
|
|
38
|
+
export interface TabsIndicatorProps extends ComponentPropsWithRef<'div'> {
|
|
39
|
+
asChild?: boolean;
|
|
40
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { TabsProps } from './tabs-type';
|
|
2
|
+
import '../../styles/token/color.css';
|
|
3
|
+
import '../../styles/token/font.css';
|
|
4
|
+
import './tabs-style.css';
|
|
5
|
+
declare const Tabs: (props: TabsProps) => import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
export default Tabs;
|
|
7
|
+
export type { TabsProps };
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import type { StoryObj } from '@storybook/react';
|
|
2
|
+
declare const meta: {
|
|
3
|
+
title: string;
|
|
4
|
+
component: (props: import("./tabs-type").TabsProps) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
args: {
|
|
6
|
+
variant: "underline";
|
|
7
|
+
defaultValue: string;
|
|
8
|
+
items: ({
|
|
9
|
+
id: string;
|
|
10
|
+
label: string;
|
|
11
|
+
content: import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
leftIcon: import("react/jsx-runtime").JSX.Element;
|
|
13
|
+
} | {
|
|
14
|
+
id: string;
|
|
15
|
+
label: string;
|
|
16
|
+
content: import("react/jsx-runtime").JSX.Element;
|
|
17
|
+
leftIcon?: undefined;
|
|
18
|
+
})[];
|
|
19
|
+
};
|
|
20
|
+
};
|
|
21
|
+
export default meta;
|
|
22
|
+
type Story = StoryObj<typeof meta>;
|
|
23
|
+
export declare const Default: Story;
|
package/package.json
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nurihaus/web-design-system",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.46",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "nurilounge-admin-design-system",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
8
8
|
"files": [
|
|
9
9
|
"dist",
|
|
10
|
-
"README.md"
|
|
10
|
+
"README.md",
|
|
11
|
+
"styles"
|
|
11
12
|
],
|
|
12
13
|
"author": "nuri",
|
|
13
14
|
"license": "MIT",
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
.nuri-ai-start {
|
|
2
|
+
align-items: flex-start;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.nuri-ai-center {
|
|
6
|
+
align-items: center;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.nuri-ai-end {
|
|
10
|
+
align-items: flex-end;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.nuri-ai-stretch {
|
|
14
|
+
align-items: stretch;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.nuri-ai-baseline {
|
|
18
|
+
align-items: baseline;
|
|
19
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
.nuri-display-flex {
|
|
2
|
+
display: flex;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.nuri-display-inline-flex {
|
|
6
|
+
display: inline-flex;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.nuri-display-block {
|
|
10
|
+
display: block;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.nuri-display-inline-block {
|
|
14
|
+
display: inline-block;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.nuri-display-grid {
|
|
18
|
+
display: grid;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.nuri-display-inline-grid {
|
|
22
|
+
display: inline-grid;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.nuri-display-contents {
|
|
26
|
+
display: contents;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.nuri-display-none {
|
|
30
|
+
display: none;
|
|
31
|
+
}
|
package/styles/index.css
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/* Token styles */
|
|
2
|
+
@import './token/color.css';
|
|
3
|
+
@import './token/font.css';
|
|
4
|
+
@import './token/radius.css';
|
|
5
|
+
@import './token/cursor.css';
|
|
6
|
+
|
|
7
|
+
/* Reset styles */
|
|
8
|
+
@import './reset.css';
|
|
9
|
+
|
|
10
|
+
/* Utility styles */
|
|
11
|
+
@import './display.css';
|
|
12
|
+
@import './position.css';
|
|
13
|
+
@import './flex-direction.css';
|
|
14
|
+
@import './align-items.css';
|
|
15
|
+
@import './justify-content.css';
|
|
16
|
+
@import './overflow.css';
|
|
17
|
+
|
|
18
|
+
/* Component styles */
|
|
19
|
+
@import '../components/avatar/avatar-style.css';
|
|
20
|
+
@import '../components/badge/badge-style.css';
|
|
21
|
+
@import '../components/button/button-style.css';
|
|
22
|
+
@import '../components/check-box/check-box-style.css';
|
|
23
|
+
@import '../components/elements/text/text-style.css';
|
|
24
|
+
@import '../components/loading/spinner/spinner-style.css';
|
|
25
|
+
@import '../components/loading/inline-loading/inline-loading-style.css';
|
|
26
|
+
@import '../components/loading/overlay-loading/overlay-loading-style.css';
|
|
27
|
+
@import '../components/modal/modal-style.css';
|
|
28
|
+
@import '../components/radio/radio-style.css';
|
|
29
|
+
@import '../components/table/table-style.css';
|
|
30
|
+
@import '../components/text-field/text-field-style.css';
|
|
31
|
+
@import '../components/tooltip/tooltip-style.css';
|
|
32
|
+
@import '../components/drop-down/drop-down-style.css';
|
|
33
|
+
@import '../components/collapsible-menu/collapsible-menu-style.css';
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
.nuri-justify-content-start {
|
|
2
|
+
justify-content: flex-start;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.nuri-justify-content-center {
|
|
6
|
+
justify-content: center;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.nuri-justify-content-end {
|
|
10
|
+
justify-content: flex-end;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.nuri-justify-content-between {
|
|
14
|
+
justify-content: space-between;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.nuri-justify-content-around {
|
|
18
|
+
justify-content: space-around;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.nuri-justify-content-evenly {
|
|
22
|
+
justify-content: space-evenly;
|
|
23
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
.nuri-overflow-visible {
|
|
2
|
+
overflow: visible;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.nuri-overflow-hidden {
|
|
6
|
+
overflow: hidden;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.nuri-overflow-scroll {
|
|
10
|
+
overflow: scroll;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.nuri-overflow-auto {
|
|
14
|
+
overflow: auto;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.nuri-overflow-x-visible {
|
|
18
|
+
overflow-x: visible;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.nuri-overflow-x-hidden {
|
|
22
|
+
overflow-x: hidden;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.nuri-overflow-x-scroll {
|
|
26
|
+
overflow-x: scroll;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.nuri-overflow-x-auto {
|
|
30
|
+
overflow-x: auto;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.nuri-overflow-y-visible {
|
|
34
|
+
overflow-y: visible;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.nuri-overflow-y-hidden {
|
|
38
|
+
overflow-y: hidden;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.nuri-overflow-y-scroll {
|
|
42
|
+
overflow-y: scroll;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.nuri-overflow-y-auto {
|
|
46
|
+
overflow-y: auto;
|
|
47
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
.nuri-position-static {
|
|
2
|
+
position: static;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.nuri-position-relative {
|
|
6
|
+
position: relative;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.nuri-position-absolute {
|
|
10
|
+
position: absolute;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.nuri-position-fixed {
|
|
14
|
+
position: fixed;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.nuri-position-sticky {
|
|
18
|
+
position: sticky;
|
|
19
|
+
}
|
package/styles/reset.css
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
/* 모든 요소의 마진과 패딩 제거 */
|
|
2
|
+
* {
|
|
3
|
+
margin: 0;
|
|
4
|
+
padding: 0;
|
|
5
|
+
box-sizing: border-box;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
/* 기본 폰트 설정 및 텍스트 렌더링 최적화 */
|
|
9
|
+
html {
|
|
10
|
+
-webkit-text-size-adjust: 100%;
|
|
11
|
+
-webkit-font-smoothing: antialiased;
|
|
12
|
+
-moz-osx-font-smoothing: grayscale;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
/* 리스트 스타일 제거 */
|
|
16
|
+
ul,
|
|
17
|
+
ol {
|
|
18
|
+
list-style: none;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
/* 링크 스타일 초기화 */
|
|
22
|
+
a {
|
|
23
|
+
text-decoration: none;
|
|
24
|
+
color: inherit;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
/* 버튼 스타일 초기화 */
|
|
28
|
+
button {
|
|
29
|
+
border: none;
|
|
30
|
+
background: none;
|
|
31
|
+
cursor: pointer;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
/* 이미지 관련 설정 */
|
|
35
|
+
img {
|
|
36
|
+
max-width: 100%;
|
|
37
|
+
height: auto;
|
|
38
|
+
display: block;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
/* 폼 요소 스타일 초기화 */
|
|
42
|
+
input,
|
|
43
|
+
textarea,
|
|
44
|
+
select {
|
|
45
|
+
font-family: inherit;
|
|
46
|
+
font-size: inherit;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
p {
|
|
50
|
+
margin-top: 0;
|
|
51
|
+
margin-bottom: 0;
|
|
52
|
+
}
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
.nuri-theme {
|
|
2
|
+
--color-primary-black: #000000;
|
|
3
|
+
--color-primary-white: #ffffff;
|
|
4
|
+
--color-primary-gray-fa: #fafafa;
|
|
5
|
+
--color-primary-gray-f4: #f4f4f5;
|
|
6
|
+
--color-primary-gray-e4: #e4e4e7;
|
|
7
|
+
--color-primary-gray-d4: #d4d4d8;
|
|
8
|
+
--color-primary-gray-a1: #a1a1aa;
|
|
9
|
+
--color-primary-gray-71: #71717a;
|
|
10
|
+
--color-primary-gray-52: #52525b;
|
|
11
|
+
--color-primary-gray-3f: #3f3f46;
|
|
12
|
+
--color-primary-gray-27: #27272a;
|
|
13
|
+
--color-primary-gray-18: #18181b;
|
|
14
|
+
|
|
15
|
+
--color-point-purple-f4: #f4effa;
|
|
16
|
+
--color-point-purple-e9: #e9e0f5;
|
|
17
|
+
--color-point-purple-dd: #ddd1f0;
|
|
18
|
+
--color-point-purple-c3: #c3b4dd;
|
|
19
|
+
--color-point-purple-a8: #a894c7;
|
|
20
|
+
--color-point-purple-95: #957eb4;
|
|
21
|
+
--color-point-purple-6f: #6f56a3;
|
|
22
|
+
--color-point-purple-4c: #4c277c;
|
|
23
|
+
--color-point-purple-41: #4c1d88;
|
|
24
|
+
--color-point-purple-39: #391d5d;
|
|
25
|
+
|
|
26
|
+
--color-accent-red-ff: #fff5f6;
|
|
27
|
+
--color-accent-red-ffe: #ffe8e9;
|
|
28
|
+
--color-accent-red-fb: #fbcfd2;
|
|
29
|
+
--color-accent-red-f3: #f39aa0;
|
|
30
|
+
--color-accent-red-e8: #e86f77;
|
|
31
|
+
--color-accent-red-df: #df535c;
|
|
32
|
+
--color-accent-red-c9: #c94751;
|
|
33
|
+
--color-accent-red-b0: #b02e4c;
|
|
34
|
+
--color-accent-red-8f: #8f243a;
|
|
35
|
+
--color-accent-red-6e: #6e1a2c;
|
|
36
|
+
|
|
37
|
+
--color-accent-pink-ff: #fff1f6;
|
|
38
|
+
--color-accent-pink-ffe: #ffe4ee;
|
|
39
|
+
--color-accent-pink-fe: #fecfe3;
|
|
40
|
+
--color-accent-pink-fd: #fda4cc;
|
|
41
|
+
--color-accent-pink-f4: #f472b6;
|
|
42
|
+
--color-accent-pink-ec: #ec6fae;
|
|
43
|
+
--color-accent-pink-d9: #d95d9a;
|
|
44
|
+
--color-accent-pink-b9: #b94a7e;
|
|
45
|
+
--color-accent-pink-93: #93385f;
|
|
46
|
+
--color-accent-pink-6e: #6e2644;
|
|
47
|
+
|
|
48
|
+
--color-accent-magenta-fe: #fef0ff;
|
|
49
|
+
--color-accent-magenta-fc: #fce4ff;
|
|
50
|
+
--color-accent-magenta-f8: #f8c6ff;
|
|
51
|
+
--color-accent-magenta-f2: #f29bff;
|
|
52
|
+
--color-accent-magenta-ec: #ec5cef;
|
|
53
|
+
--color-accent-magenta-e1: #e13be7;
|
|
54
|
+
--color-accent-magenta-c8: #c82fcc;
|
|
55
|
+
--color-accent-magenta-a9: #a923a8;
|
|
56
|
+
--color-accent-magenta-83: #831c83;
|
|
57
|
+
--color-accent-magenta-5e: #5e145e;
|
|
58
|
+
|
|
59
|
+
--color-accent-blue-f1: #f1f4ff;
|
|
60
|
+
--color-accent-blue-e3: #e3e8ff;
|
|
61
|
+
--color-accent-blue-c7: #c7d2fe;
|
|
62
|
+
--color-accent-blue-a5: #a5b4fc;
|
|
63
|
+
--color-accent-blue-81: #818cf8;
|
|
64
|
+
--color-accent-blue-25: #2563eb;
|
|
65
|
+
--color-accent-blue-1f: #1f52c9;
|
|
66
|
+
--color-accent-blue-1e: #1e40af;
|
|
67
|
+
--color-accent-blue-1c: #1c348a;
|
|
68
|
+
--color-accent-blue-16: #162763;
|
|
69
|
+
|
|
70
|
+
--color-accent-mint-ec: #ecfefd;
|
|
71
|
+
--color-accent-mint-d1: #d1faf7;
|
|
72
|
+
--color-accent-mint-a7: #a7f3ee;
|
|
73
|
+
--color-accent-mint-6e: #6ee7e0;
|
|
74
|
+
--color-accent-mint-2d: #2dd4cb;
|
|
75
|
+
--color-accent-mint-01: #01ece1;
|
|
76
|
+
--color-accent-mint-0b: #0bc5bc;
|
|
77
|
+
--color-accent-mint-0f: #0f9f99;
|
|
78
|
+
--color-accent-mint-11: #117d78;
|
|
79
|
+
--color-accent-mint-13: #135c58;
|
|
80
|
+
|
|
81
|
+
--color-accent-green-ec: #ecfdf3;
|
|
82
|
+
--color-accent-green-d1: #d1fae1;
|
|
83
|
+
--color-accent-green-a7: #a7f3c8;
|
|
84
|
+
--color-accent-green-6e: #6ee7a3;
|
|
85
|
+
--color-accent-green-41: #41e176;
|
|
86
|
+
--color-accent-green-22: #22c55e;
|
|
87
|
+
--color-accent-green-16: #16a34a;
|
|
88
|
+
--color-accent-green-28: #289a3a;
|
|
89
|
+
--color-accent-green-166: #166534;
|
|
90
|
+
--color-accent-green-14: #14532d;
|
|
91
|
+
|
|
92
|
+
--color-accent-yellow-ff: #fffbeb;
|
|
93
|
+
--color-accent-yellow-fe: #fef3c7;
|
|
94
|
+
--color-accent-yellow-fd: #fde68a;
|
|
95
|
+
--color-accent-yellow-fc: #fcd34d;
|
|
96
|
+
--color-accent-yellow-fb: #fbbf24;
|
|
97
|
+
--color-accent-yellow-ffb: #ffb800;
|
|
98
|
+
--color-accent-yellow-e0: #e0a106;
|
|
99
|
+
--color-accent-yellow-b5: #b58105;
|
|
100
|
+
--color-accent-yellow-8a: #8a6404;
|
|
101
|
+
--color-accent-yellow-5f: #5f4703;
|
|
102
|
+
|
|
103
|
+
--color-accent-orange-ff: #fff7ed;
|
|
104
|
+
--color-accent-orange-ffe: #ffedd5;
|
|
105
|
+
--color-accent-orange-fe: #fed7aa;
|
|
106
|
+
--color-accent-orange-fd: #fdba74;
|
|
107
|
+
--color-accent-orange-fb: #fb923c;
|
|
108
|
+
--color-accent-orange-f9: #f97316;
|
|
109
|
+
--color-accent-orange-ea: #ea580c;
|
|
110
|
+
--color-accent-orange-c2: #c2410c;
|
|
111
|
+
--color-accent-orange-9a: #9a3412;
|
|
112
|
+
--color-accent-orange-7c: #7c2d12;
|
|
113
|
+
|
|
114
|
+
--color-etc-skeleton-e4: #0f0f17;
|
|
115
|
+
--color-etc-skeleton-f7: #f7f7f8;
|
|
116
|
+
--color-etc-skeleton-ff: #ffffff;
|
|
117
|
+
|
|
118
|
+
--color-etc-hover-ee: #eeeeee;
|
|
119
|
+
}
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
export const colors = {
|
|
2
|
+
transparent: 'transparent',
|
|
3
|
+
black: '#000000',
|
|
4
|
+
white: '#ffffff',
|
|
5
|
+
grayFa: '#fafafa',
|
|
6
|
+
grayF4: '#f4f4f5',
|
|
7
|
+
grayE4: '#e4e4e7',
|
|
8
|
+
grayD4: '#d4d4d8',
|
|
9
|
+
grayA1: '#a1a1aa',
|
|
10
|
+
gray71: '#71717a',
|
|
11
|
+
gray52: '#52525b',
|
|
12
|
+
gray3f: '#3f3f46',
|
|
13
|
+
gray27: '#27272a',
|
|
14
|
+
gray18: '#18181b',
|
|
15
|
+
purpleF4: '#f4effa',
|
|
16
|
+
purpleE9: '#e9e0f5',
|
|
17
|
+
purpleDd: '#ddd1f0',
|
|
18
|
+
purpleC3: '#c3b4dd',
|
|
19
|
+
purpleA8: '#a894c7',
|
|
20
|
+
purple95: '#957eb4',
|
|
21
|
+
purple6f: '#6f56a3',
|
|
22
|
+
purple4c: '#4c277c',
|
|
23
|
+
purple41: '#4c1d88',
|
|
24
|
+
purple39: '#391d5d',
|
|
25
|
+
accentRedFf: '#fff5f6',
|
|
26
|
+
accentRedFfe: '#ffe8e9',
|
|
27
|
+
accentRedFb: '#fbcfd2',
|
|
28
|
+
accentRedF3: '#f39aa0',
|
|
29
|
+
accentRedE8: '#e86f77',
|
|
30
|
+
accentRedDf: '#df535c',
|
|
31
|
+
accentRedC9: '#c94751',
|
|
32
|
+
accentRedB0: '#b02e4c',
|
|
33
|
+
accentRed8f: '#8f243a',
|
|
34
|
+
accentRed6e: '#6e1a2c',
|
|
35
|
+
accentPinkFf: '#fff1f6',
|
|
36
|
+
accentPinkFfe: '#ffe4ee',
|
|
37
|
+
accentPinkFe: '#fecfe3',
|
|
38
|
+
accentPinkFd: '#fda4cc',
|
|
39
|
+
accentPinkF4: '#f472b6',
|
|
40
|
+
accentPinkEc: '#ec6fae',
|
|
41
|
+
accentPinkD9: '#d95d9a',
|
|
42
|
+
accentPinkB9: '#b94a7e',
|
|
43
|
+
accentPink93: '#93385f',
|
|
44
|
+
accentPink6e: '#6e2644',
|
|
45
|
+
accentMagentaFe: '#fef0ff',
|
|
46
|
+
accentMagentaFc: '#fce4ff',
|
|
47
|
+
accentMagentaF8: '#f8c6ff',
|
|
48
|
+
accentMagentaF2: '#f29bff',
|
|
49
|
+
accentMagentaEc: '#ec5cef',
|
|
50
|
+
accentMagentaE1: '#e13be7',
|
|
51
|
+
accentMagentaC8: '#c82fcc',
|
|
52
|
+
accentMagentaA9: '#a923a8',
|
|
53
|
+
accentMagenta83: '#831c83',
|
|
54
|
+
accentMagenta5e: '#5e145e',
|
|
55
|
+
accentBlueF1: '#f1f4ff',
|
|
56
|
+
accentBlueE3: '#e3e8ff',
|
|
57
|
+
accentBlueC7: '#c7d2fe',
|
|
58
|
+
accentBlueA5: '#a5b4fc',
|
|
59
|
+
accentBlue81: '#818cf8',
|
|
60
|
+
accentBlue25: '#2563eb',
|
|
61
|
+
accentBlue1f: '#1f52c9',
|
|
62
|
+
accentBlue1e: '#1e40af',
|
|
63
|
+
accentBlue1c: '#1c348a',
|
|
64
|
+
accentBlue16: '#162763',
|
|
65
|
+
accentMintEc: '#ecfefd',
|
|
66
|
+
accentMintD1: '#d1faf7',
|
|
67
|
+
accentMintA7: '#a7f3ee',
|
|
68
|
+
accentMint6e: '#6ee7e0',
|
|
69
|
+
accentMint2d: '#2dd4cb',
|
|
70
|
+
accentMint01: '#01ece1',
|
|
71
|
+
accentMint0b: '#0bc5bc',
|
|
72
|
+
accentMint0f: '#0f9f99',
|
|
73
|
+
accentMint11: '#117d78',
|
|
74
|
+
accentMint13: '#135c58',
|
|
75
|
+
accentGreenEc: '#ecfdf3',
|
|
76
|
+
accentGreenD1: '#d1fae1',
|
|
77
|
+
accentGreenA7: '#a7f3c8',
|
|
78
|
+
accentGreen6e: '#6ee7a3',
|
|
79
|
+
accentGreen41: '#41e176',
|
|
80
|
+
accentGreen22: '#22c55e',
|
|
81
|
+
accentGreen16: '#16a34a',
|
|
82
|
+
accentGreen28: '#289a3a',
|
|
83
|
+
accentGreen166: '#166534',
|
|
84
|
+
accentGreen14: '#14532d',
|
|
85
|
+
accentYellowFf: '#fffbeb',
|
|
86
|
+
accentYellowFe: '#fef3c7',
|
|
87
|
+
accentYellowFd: '#fde68a',
|
|
88
|
+
accentYellowFc: '#fcd34d',
|
|
89
|
+
accentYellowFb: '#fbbf24',
|
|
90
|
+
accentYellowFfb: '#ffb800',
|
|
91
|
+
accentYellowE0: '#e0a106',
|
|
92
|
+
accentYellowB5: '#b58105',
|
|
93
|
+
accentYellow8a: '#8a6404',
|
|
94
|
+
accentYellow5f: '#5f4703',
|
|
95
|
+
accentOrangeFf: '#fff7ed',
|
|
96
|
+
accentOrangeFfe: '#ffedd5',
|
|
97
|
+
accentOrangeFe: '#fed7aa',
|
|
98
|
+
accentOrangeFd: '#fdba74',
|
|
99
|
+
accentOrangeFb: '#fb923c',
|
|
100
|
+
accentOrangeF9: '#f97316',
|
|
101
|
+
accentOrangeEa: '#ea580c',
|
|
102
|
+
accentOrangeC2: '#c2410c',
|
|
103
|
+
accentOrange9a: '#9a3412',
|
|
104
|
+
accentOrange7c: '#7c2d12',
|
|
105
|
+
} as const;
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.8/dist/web/static/pretendard.css');
|
|
2
|
+
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap');
|
|
3
|
+
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');
|
|
4
|
+
|
|
5
|
+
.nuri-theme {
|
|
6
|
+
--font-size-xsm: 12px;
|
|
7
|
+
--font-size-sm: 14px;
|
|
8
|
+
--font-size-base: 16px;
|
|
9
|
+
--font-size-lg: 18px;
|
|
10
|
+
--font-size-xl: 20px;
|
|
11
|
+
--font-size-2xl: 24px;
|
|
12
|
+
--font-size-3xl: 30px;
|
|
13
|
+
--font-size-4xl: 36px;
|
|
14
|
+
--font-size-5xl: 48px;
|
|
15
|
+
--font-size-6xl: 60px;
|
|
16
|
+
|
|
17
|
+
--line-height-xsm: 18px;
|
|
18
|
+
--line-height-sm: 18px;
|
|
19
|
+
--line-height-base: 22px;
|
|
20
|
+
--line-height-lg: 24px;
|
|
21
|
+
--line-height-xl: 28px;
|
|
22
|
+
--line-height-2xl: 32px;
|
|
23
|
+
--line-height-3xl: 36px;
|
|
24
|
+
--line-height-4xl: 43px;
|
|
25
|
+
--line-height-5xl: 66px;
|
|
26
|
+
--line-height-6xl: 82px;
|
|
27
|
+
|
|
28
|
+
--font-weight-regular: 400;
|
|
29
|
+
--font-weight-medium: 500;
|
|
30
|
+
--font-weight-semibold: 600;
|
|
31
|
+
--font-weight-bold: 700;
|
|
32
|
+
--font-weight-extrabold: 800;
|
|
33
|
+
|
|
34
|
+
font-family:
|
|
35
|
+
'Twemoji Country Flags',
|
|
36
|
+
'Pretendard',
|
|
37
|
+
Pretendard,
|
|
38
|
+
-apple-system,
|
|
39
|
+
BlinkMacSystemFont,
|
|
40
|
+
system-ui,
|
|
41
|
+
Roboto,
|
|
42
|
+
'Helvetica Neue',
|
|
43
|
+
'Segoe UI',
|
|
44
|
+
'Apple SD Gothic Neo',
|
|
45
|
+
'Noto Sans KR',
|
|
46
|
+
'Malgun Gothic',
|
|
47
|
+
'Apple Color Emoji',
|
|
48
|
+
'Segoe UI Emoji',
|
|
49
|
+
'Segoe UI Symbol',
|
|
50
|
+
'Noto Color Emoji',
|
|
51
|
+
sans-serif;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.nuri-placeholder {
|
|
55
|
+
color: var(--color-primary-gray-a1);
|
|
56
|
+
}
|