도리쓰에러쓰

[TIL] 프리온보딩 27일차 - 220529 본문

Project/원티드 프리온보딩 프론트엔드 코스

[TIL] 프리온보딩 27일차 - 220529

강도리 2022. 5. 31. 15:03

1️⃣ Apple Color

(애플 뿐만 아니라 여러 기업이 자신의 사이트에 컬러를 기재한다.)

 

Color - Visual Design - iOS - Human Interface Guidelines - Apple Developer

Color Color is a great way to impart vitality, provide visual continuity, communicate status information, give feedback in response to user actions, and help people visualize data. Look to the system’s color scheme for guidance when picking app accent co

developer.apple.com

 

 

2️⃣ Adobe Color

 

https://color.adobe.com/ko/create

 

color.adobe.com

 

 

3️⃣ vscode용 todo highlight 세팅

 "todohighlight.keywords": [
    {
      "text": "TODO:",
      "color": "#fff",
      "backgroundColor": "#ffbd2a",
      "overviewRulerColor": "rgba(255,189,42,0.8)"
    },
    {
      "text": "FIXME:",
      "color": "#fff",
      "backgroundColor": "#F45050",
      "overviewRulerColor": "rgba(240,98,146,0.8)"
    },
    {
      "text": "MEMO:",
      "color": "#fff",
      "backgroundColor": "#34c759",
      "overviewRulerColor": "rgba(240,98,146,0.8)"
    },
    {
      "text": "NOTE:",
      "color": "#fff",
      "backgroundColor": "#007aff",
      "overviewRulerColor": "rgba(240,98,146,0.8)"
    }
  ]
Comments