Practical Usage Example

Comprehensive

실제 사용 예시와 조합

Preview

UI 컴포넌트 예시

성공 메시지
작업이 성공적으로 완료되었습니다.
오류 메시지
오류가 발생했습니다. 다시 시도해주세요.
경고 메시지
주의가 필요한 상황입니다.

텍스트 컬러 예시

Primary Text - 주요 텍스트
Secondary Text - 보조 텍스트
Disabled Text - 비활성 텍스트

다크 테마 예시

Dark theme primary text
Dark theme secondary text
Dark theme disabled text

Code Example


      <div className="space-y-4">
        {/* Buttons with semantic colors */}
        <button className="bg-semantic-primary text-white px-4 py-2 rounded">
          Primary Button
        </button>
        
        {/* Status messages */}
        <div className="bg-green-100 border-l-4 border-green-500 p-4">
          <div className="text-green-800">Success Message</div>
        </div>
        
        {/* Text colors */}
        <div className="text-semantic-text-primary">Primary Text</div>
        <div className="text-semantic-text-secondary">Secondary Text</div>
      </div>
    

다른 스토리 보기