-
Notifications
You must be signed in to change notification settings - Fork 1
fix: token 스크립트 수정 #8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -18,5 +18,6 @@ | |
| }, | ||
| "[css]": { | ||
| "editor.defaultFormatter": "esbenp.prettier-vscode" | ||
| } | ||
| }, | ||
| "css.lint.unknownAtRules": "ignore" | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -1,63 +1,61 @@ | ||||||||||||||||||||||||||||||||||||||
| import Image from "next/image"; | ||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||
| export default function Home() { | ||||||||||||||||||||||||||||||||||||||
| return ( | ||||||||||||||||||||||||||||||||||||||
| <div className="flex min-h-screen items-center justify-center bg-zinc-50 font-sans dark:bg-black"> | ||||||||||||||||||||||||||||||||||||||
| <main className="flex min-h-screen w-full max-w-3xl flex-col items-center justify-between bg-white px-16 py-32 sm:items-start dark:bg-black"> | ||||||||||||||||||||||||||||||||||||||
| <Image | ||||||||||||||||||||||||||||||||||||||
| className="dark:invert" | ||||||||||||||||||||||||||||||||||||||
| src="/next.svg" | ||||||||||||||||||||||||||||||||||||||
| alt="Next.js logo" | ||||||||||||||||||||||||||||||||||||||
| width={100} | ||||||||||||||||||||||||||||||||||||||
| height={20} | ||||||||||||||||||||||||||||||||||||||
| priority | ||||||||||||||||||||||||||||||||||||||
| /> | ||||||||||||||||||||||||||||||||||||||
| <div className="flex flex-col items-center gap-6 text-center sm:items-start sm:text-left"> | ||||||||||||||||||||||||||||||||||||||
| <h1 className="max-w-xs text-3xl leading-10 font-semibold tracking-tight text-black dark:text-zinc-50"> | ||||||||||||||||||||||||||||||||||||||
| To get started, edit the page.tsx file. | ||||||||||||||||||||||||||||||||||||||
| <div className="bg-surface-base flex min-h-screen items-center justify-center font-sans"> | ||||||||||||||||||||||||||||||||||||||
| <main className="flex min-h-screen w-full max-w-3xl flex-col items-center gap-8 px-8 py-12"> | ||||||||||||||||||||||||||||||||||||||
| {/* 토큰 테스트 섹션 */} | ||||||||||||||||||||||||||||||||||||||
| <div className="w-full space-y-8 rounded-lg border border-gray-200 bg-white p-8 shadow-sm"> | ||||||||||||||||||||||||||||||||||||||
| <h1 className="text-24-700 text-brand-black border-b pb-4"> | ||||||||||||||||||||||||||||||||||||||
| 🎨 Design Token Test | ||||||||||||||||||||||||||||||||||||||
| </h1> | ||||||||||||||||||||||||||||||||||||||
| <p className="max-w-md text-lg leading-8 font-[700] text-zinc-600 dark:text-zinc-400"> | ||||||||||||||||||||||||||||||||||||||
| Looking for a starting point or more instructions? Head over to{" "} | ||||||||||||||||||||||||||||||||||||||
| <a | ||||||||||||||||||||||||||||||||||||||
| href="https://vercel.com/templates?framework=next.js&utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app" | ||||||||||||||||||||||||||||||||||||||
| className="font-medium text-zinc-950 dark:text-zinc-50" | ||||||||||||||||||||||||||||||||||||||
| > | ||||||||||||||||||||||||||||||||||||||
| Templates | ||||||||||||||||||||||||||||||||||||||
| </a>{" "} | ||||||||||||||||||||||||||||||||||||||
| or the{" "} | ||||||||||||||||||||||||||||||||||||||
| <a | ||||||||||||||||||||||||||||||||||||||
| href="https://nextjs.org/learn?utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app" | ||||||||||||||||||||||||||||||||||||||
| className="font-medium text-zinc-950 dark:text-zinc-50" | ||||||||||||||||||||||||||||||||||||||
| > | ||||||||||||||||||||||||||||||||||||||
| Learning | ||||||||||||||||||||||||||||||||||||||
| </a>{" "} | ||||||||||||||||||||||||||||||||||||||
| center. | ||||||||||||||||||||||||||||||||||||||
| </p> | ||||||||||||||||||||||||||||||||||||||
| </div> | ||||||||||||||||||||||||||||||||||||||
| <div className="flex flex-col gap-4 text-base font-medium sm:flex-row"> | ||||||||||||||||||||||||||||||||||||||
| <a | ||||||||||||||||||||||||||||||||||||||
| className="bg-foreground text-background flex h-12 w-full items-center justify-center gap-2 rounded-full px-5 transition-colors hover:bg-[#383838] md:w-[158px] dark:hover:bg-[#ccc]" | ||||||||||||||||||||||||||||||||||||||
| href="https://vercel.com/new?utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app" | ||||||||||||||||||||||||||||||||||||||
| target="_blank" | ||||||||||||||||||||||||||||||||||||||
| rel="noopener noreferrer" | ||||||||||||||||||||||||||||||||||||||
| > | ||||||||||||||||||||||||||||||||||||||
| <Image | ||||||||||||||||||||||||||||||||||||||
| className="dark:invert" | ||||||||||||||||||||||||||||||||||||||
| src="/vercel.svg" | ||||||||||||||||||||||||||||||||||||||
| alt="Vercel logomark" | ||||||||||||||||||||||||||||||||||||||
| width={16} | ||||||||||||||||||||||||||||||||||||||
| height={16} | ||||||||||||||||||||||||||||||||||||||
| /> | ||||||||||||||||||||||||||||||||||||||
| Deploy Now | ||||||||||||||||||||||||||||||||||||||
| </a> | ||||||||||||||||||||||||||||||||||||||
| <a | ||||||||||||||||||||||||||||||||||||||
| className="flex h-12 w-full items-center justify-center rounded-full border border-solid border-black/[.08] px-5 transition-colors hover:border-transparent hover:bg-black/[.04] md:w-[158px] dark:border-white/[.145] dark:hover:bg-[#1a1a1a]" | ||||||||||||||||||||||||||||||||||||||
| href="https://nextjs.org/docs?utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app" | ||||||||||||||||||||||||||||||||||||||
| target="_blank" | ||||||||||||||||||||||||||||||||||||||
| rel="noopener noreferrer" | ||||||||||||||||||||||||||||||||||||||
| > | ||||||||||||||||||||||||||||||||||||||
| Documentation | ||||||||||||||||||||||||||||||||||||||
| </a> | ||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||
| {/* 1. Typography */} | ||||||||||||||||||||||||||||||||||||||
| <section className="space-y-4"> | ||||||||||||||||||||||||||||||||||||||
| <h2 className="text-20-600">1. Typography</h2> | ||||||||||||||||||||||||||||||||||||||
| <div className="space-y-2 rounded bg-gray-50 p-4"> | ||||||||||||||||||||||||||||||||||||||
| <p className="text-24-700">Display 24px (Bold 700)</p> | ||||||||||||||||||||||||||||||||||||||
| <p className="text-20-600">Title 20px (SemiBold 600)</p> | ||||||||||||||||||||||||||||||||||||||
| <p className="text-18-500">Body 18px (Medium 500)</p> | ||||||||||||||||||||||||||||||||||||||
| <p className="text-16-400">Body 16px (Regular 400)</p> | ||||||||||||||||||||||||||||||||||||||
| <p className="text-14-400 text-disabled"> | ||||||||||||||||||||||||||||||||||||||
| Caption 14px (Disabled Color) | ||||||||||||||||||||||||||||||||||||||
| </p> | ||||||||||||||||||||||||||||||||||||||
| </div> | ||||||||||||||||||||||||||||||||||||||
| </section> | ||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||
| {/* 2. Colors & Backgrounds */} | ||||||||||||||||||||||||||||||||||||||
| <section className="space-y-4"> | ||||||||||||||||||||||||||||||||||||||
| <h2 className="text-20-600">2. Colors & Backgrounds</h2> | ||||||||||||||||||||||||||||||||||||||
| <div className="grid grid-cols-2 gap-4"> | ||||||||||||||||||||||||||||||||||||||
| <div className="bg-brand-secondary-pink flex h-20 items-center justify-center rounded-lg text-white"> | ||||||||||||||||||||||||||||||||||||||
| Pink Secondary | ||||||||||||||||||||||||||||||||||||||
| </div> | ||||||||||||||||||||||||||||||||||||||
| <div className="bg-brand-primary-orange flex h-20 items-center justify-center rounded-lg text-white"> | ||||||||||||||||||||||||||||||||||||||
| Orange Primary | ||||||||||||||||||||||||||||||||||||||
| </div> | ||||||||||||||||||||||||||||||||||||||
| <div className="bg-surface-base border-light flex h-20 items-center justify-center rounded-lg border"> | ||||||||||||||||||||||||||||||||||||||
| Surface Base | ||||||||||||||||||||||||||||||||||||||
| </div> | ||||||||||||||||||||||||||||||||||||||
| <div className="bg-disabled text-disabled flex h-20 items-center justify-center rounded-lg"> | ||||||||||||||||||||||||||||||||||||||
| Disabled Area | ||||||||||||||||||||||||||||||||||||||
| </div> | ||||||||||||||||||||||||||||||||||||||
| </div> | ||||||||||||||||||||||||||||||||||||||
| </section> | ||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||
| {/* 3. Buttons */} | ||||||||||||||||||||||||||||||||||||||
| <section className="space-y-4"> | ||||||||||||||||||||||||||||||||||||||
| <h2 className="text-20-600">3. Buttons</h2> | ||||||||||||||||||||||||||||||||||||||
| <div className="flex flex-wrap gap-4"> | ||||||||||||||||||||||||||||||||||||||
| <button className="btn-primary text-16-600 px-8 py-3 transition-opacity hover:opacity-90"> | ||||||||||||||||||||||||||||||||||||||
| Primary Button | ||||||||||||||||||||||||||||||||||||||
| </button> | ||||||||||||||||||||||||||||||||||||||
| <button className="btn-slate text-brand-black border-light text-16-600 rounded-2xl border px-8 py-3"> | ||||||||||||||||||||||||||||||||||||||
| Secondary Button | ||||||||||||||||||||||||||||||||||||||
| </button> | ||||||||||||||||||||||||||||||||||||||
| <button className="btn-disabled text-16-400 cursor-not-allowed px-8 py-3"> | ||||||||||||||||||||||||||||||||||||||
| Disabled Button | ||||||||||||||||||||||||||||||||||||||
| </button> | ||||||||||||||||||||||||||||||||||||||
|
Comment on lines
+48
to
+56
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 버튼 컴포넌트의 클래스명과 접근성에 몇 가지 개선점이 필요해 보입니다.
Suggested change
References
|
||||||||||||||||||||||||||||||||||||||
| </div> | ||||||||||||||||||||||||||||||||||||||
| </section> | ||||||||||||||||||||||||||||||||||||||
| </div> | ||||||||||||||||||||||||||||||||||||||
| </main> | ||||||||||||||||||||||||||||||||||||||
| </div> | ||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
File Walkthrough
generate-tokens.js (+214/-0)
토큰 JSON을 CSS 변수로 변환하는 생성 스크립트scripts/generate-tokens.js
token.json에서 색상, 타이포그래피, 반경, 테두리, 불투명도 토큰 파싱tokens.css자동 생성text-{size}-{weight}형식의 타이포그래피 유틸리티 클래스 생성tokens.css (+260/-0)
자동 생성된 CSS 변수 및 유틸리티 클래스app/tokens.css
text-{size}-{weight}타이포그래피 유틸리티 클래스 제공page.tsx (+55/-57)
디자인 토큰 테스트 페이지로 변경app/page.tsx
globals.css (+2/-1)
토큰 CSS 파일 임포트 추가app/globals.css
tokens.css파일 임포트 추가settings.json (+2/-1)
CSS 린트 설정 추가.vscode/settings.json
css.lint.unknownAtRules설정@layer등 커스텀 CSS 규칙 경고 무시token.json (+0/-1279)
토큰 파일 위치 변경app/src/token.json
app/token.json)로 이동