12345678910111213141516171819202122232425262728 |
- @charset "UTF-8";
- // 共用變數與函數
- @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500;700;900&display=swap'); // -思源黑體
- @import url('https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@200;300;400;500;600;700;900&display=swap'); // -思源宋體
-
-
- /* Font */
- $font-family-base: 'Noto Sans TC','PingFangTC', 'Heiti TC', 'Microsoft JhengHei', 'Noto Sans Myanmar','Arial', 'sans-serif';
-
- /* color */
- $c-blue: #6591BB;
-
- $c-blue-bg: #F9FDFF;
-
- $c-blue-active: #EAF2F8;
-
- $c-blue-bright: #2AACE2;
-
- $c-white: #ffffff;
-
- $c-black: #1E2846;
-
- $c-gray: #747474;
-
- $c-gray-lighten: #C8C8C8;
-
-
|