Yoshie Muranaka | d388a28 | 2020-07-08 16:15:46 -0700 | [diff] [blame] | 1 | @font-face { |
| 2 | font-family: 'Plex'; |
| 3 | src: url('~@/env/assets/fonts/IBM_Plex_Sans/IBMPlexSans-Light.woff') format('woff'); |
| 4 | font-weight: 200; |
| 5 | } |
| 6 | @font-face { |
| 7 | font-family: 'Plex'; |
| 8 | src: url('~@/env/assets/fonts/IBM_Plex_Sans/IBMPlexSans-LightItalic.woff') format('woff'); |
| 9 | font-weight: 200; |
| 10 | font-style: italic; |
| 11 | } |
| 12 | @font-face { |
| 13 | font-family: 'Plex'; |
| 14 | src: url('~@/env/assets/fonts/IBM_Plex_Sans/IBMPlexSans-Regular.woff') format('woff'); |
| 15 | font-weight: 400; |
| 16 | } |
| 17 | @font-face { |
| 18 | font-family: 'Plex'; |
| 19 | src: url('~@/env/assets/fonts/IBM_Plex_Sans/IBMPlexSans-Italic.woff') format('woff'); |
| 20 | font-weight: 400; |
| 21 | font-style: italic; |
| 22 | } |
| 23 | @font-face { |
| 24 | font-family: 'Plex'; |
| 25 | src: url('~@/env/assets/fonts/IBM_Plex_Sans/IBMPlexSans-SemiBold.woff') format('woff'); |
| 26 | font-weight: 700; |
| 27 | } |
| 28 | @font-face { |
| 29 | font-family: 'Plex'; |
| 30 | src: url('~@/env/assets/fonts/IBM_Plex_Sans/IBMPlexSans-SemiBoldItalic.woff') format('woff'); |
| 31 | font-weight: 700; |
| 32 | font-style: italic; |
| 33 | } |
| 34 | |
| 35 | // IBM Plex with Bootstrap default as fallbacks |
| 36 | // https://getbootstrap.com/docs/4.4/content/reboot/#native-font-stack |
| 37 | |
| 38 | $font-family-base: 'Plex', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; |
| 39 | |
| 40 | // IBM gray palette |
| 41 | $gray-100: #F4F4F4; |
| 42 | // $gray-200: #E0E0E0; Use default OpenBMC $gray-200 |
| 43 | // $gray-300: #C6C6C6; Use default OpenBMC $gray-300 |
| 44 | $gray-400: #A8A8A8; |
| 45 | $gray-500: #8D8D8D; |
| 46 | $gray-600: #6F6F6F; |
| 47 | $gray-700: #525252; |
| 48 | $gray-800: #333333; |
| 49 | $gray-900: #161616; |
| 50 | |
| 51 | // IBM theme colors |
| 52 | $theme-colors: ( |
| 53 | "primary": #0F62FE, |
| 54 | "danger": #DA1E28, |
| 55 | "success": #24A146, |
| 56 | "warning": #F1C21B |
| 57 | ); |