@charset "utf-8";

:root {

	/* teal */
	--point-color-01: 0, 181, 174; 	/* #00b5ae;*/
	--point-color-02: 15, 159, 161; /* #0f9fa1; */

	/* navy */
	--point-color-03: 14, 63, 113; 	/*#0e3f71;*/
	--point-color-04: 0, 49, 82; 		/*#003152;*/
	--point-color-05: 0, 80, 135; 		/* #005087 */

	/* light blue */
	--point-color-06: 243, 243, 245; 	/* #f3f3f5 */
	--point-color-07: 240, 242, 246;	/* #f0f2f6, #f3f3f5, #eaebef, #eef0f3, #f8f9fa */
	--point-color-08: 169, 173, 185;	/* a9adb9 */
	--point-color-09: 242, 246, 246;	/* #f2f6f6 */
}
	
/* 컬러 변수 규칙
	RGB 규칙 : 000, 000, 000 : 콤마 뒤에는 항상 한 칸으 띄워서 입력
	색상값은 
	단일 컬러면 rgb(___);
	알파값을 가지고 있으면 rgba(___, 0.5);
	
	예: color: rgb(var(--point-color-10)); 
	예: color: rgba(var(--point-color-10), 0.5); 
}
*/