feat(fe): implement user age-tier font scale selector with localStorage persistence
This commit is contained in:
@@ -152,3 +152,31 @@
|
||||
--ks-grid-density: 2rem;
|
||||
}
|
||||
|
||||
/* User Age-Tier Font Accessibility Scales (사용자 연령대별 폰트 크기 표준) */
|
||||
/* 1) 청년/청장년층 (20~40대): 고밀도 정보 습득용 초고밀도 미세 폰트 */
|
||||
[data-font-scale='compact'] {
|
||||
--ks-font-page: 15px;
|
||||
--ks-font-section: 13px;
|
||||
--ks-font-body: 11px;
|
||||
--ks-font-grid: 11px;
|
||||
--ks-font-caption: 10px;
|
||||
}
|
||||
|
||||
/* 2) 중장년층 (50대): 시인성 및 판독성이 확보된 표준 ERP 폰트 */
|
||||
[data-font-scale='standard'] {
|
||||
--ks-font-page: 17px;
|
||||
--ks-font-section: 15px;
|
||||
--ks-font-body: 13px;
|
||||
--ks-font-grid: 13px;
|
||||
--ks-font-caption: 11.5px;
|
||||
}
|
||||
|
||||
/* 3) 시니어/고령층 (60대 이상): 가독성 최우선 대형 폰트 */
|
||||
[data-font-scale='senior'] {
|
||||
--ks-font-page: 20px;
|
||||
--ks-font-section: 17px;
|
||||
--ks-font-body: 15px;
|
||||
--ks-font-grid: 15px;
|
||||
--ks-font-caption: 13px;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user