/*
 * bus-colors.css
 * 버스 유형별 색상 정의
 *
 * 경기도 routeTypeCd 코드:
 *   11 직행좌석   23 시내직좌
 *   12 좌석       22 시내좌석
 *   13 일반       21 시내일반
 *   30 마을
 *   14 광역급행   16 경기순환   15 따복커뮤니티
 *   41 고속       42 시외일반   43 시외우등
 *   51 공항일반   52 공항좌석
 */

:root {
  --color-type-11:  #EE2737;   /* 직행좌석     */
  --color-type-23:  #EE2737;   /* 시내직좌     */
  --color-type-16:  #EE2737;   /* 경기순환     */
  --color-type-12:  #0085CA;   /* 좌석         */
  --color-type-22:  #0085CA;   /* 시내좌석     */
  --color-type-13:  #009775;   /* 일반         */
  --color-type-21:  #009775;   /* 시내일반     */
  --color-type-30:  #F2A900;   /* 마을         */
  --color-type-15:  #B62367;   /* 따복커뮤니티 */
  --color-type-14:  #006896;   /* 광역급행     */
  --color-type-51:  #00a0e9;   /* 공항일반     */
  --color-type-52:  #00a0e9;   /* 공항좌석     */
  --color-type-41:  #a800ff;   /* 고속         */
  --color-type-42:  #a800ff;   /* 시외일반     */
  --color-type-43:  #a800ff;   /* 시외우등     */

  /* 알 수 없는 유형 기본값 */
  --color-type-default: #0369a1;
}

/* 유형별 route-badge 색상 */
.route-badge-11, .route-badge-23, .route-badge-16 { background: var(--color-type-11) !important; }
.route-badge-12, .route-badge-22                  { background: var(--color-type-12) !important; }
.route-badge-13, .route-badge-21                  { background: var(--color-type-13) !important; }
.route-badge-30                                   { background: var(--color-type-30) !important; }
.route-badge-15                                   { background: var(--color-type-15) !important; }
.route-badge-14                                   { background: var(--color-type-14) !important; }
.route-badge-51, .route-badge-52                  { background: var(--color-type-51) !important; }
.route-badge-41, .route-badge-42, .route-badge-43 { background: var(--color-type-41) !important; }
