From 21d6de005f8e6cbf3a9dcbf02b604b6359e2ac00 Mon Sep 17 00:00:00 2001 From: Mateusz Gapski Date: Wed, 29 Jul 2020 14:28:23 +0200 Subject: Add Intel theme Add Intel fonts, colours Signed-off-by: Mateusz Gapski Change-Id: Idbfa1422f2667515efb60e24f9a84b7d77d11fcd --- src/env/assets/styles/_intel.scss | 51 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) (limited to 'src/env/assets/styles') diff --git a/src/env/assets/styles/_intel.scss b/src/env/assets/styles/_intel.scss index e69de29b..37869ee7 100644 --- a/src/env/assets/styles/_intel.scss +++ b/src/env/assets/styles/_intel.scss @@ -0,0 +1,51 @@ +@font-face { + font-family: "Intel Clear"; + src: url("~@/env/assets/fonts/Intel_Clear/IntelClear-Light-webfont.woff") + format("woff"); + font-weight: 200; + font-style: normal; +} +@font-face { + font-family: "Intel Clear"; + src: url("~@/env/assets/fonts/Intel_Clear/IntelClear-Regular-webfont.woff") + format("woff"); + font-weight: 400; + font-style: normal; +} +@font-face { + font-family: "Intel Clear"; + src: url("~@/env/assets/fonts/Intel_Clear/IntelClear-Bold-webfont.woff") + format("woff"); + font-weight: 700; + font-style: normal; +} + +$font-family-base: "Intel Clear", "Helvetica Neue", Helvetica, Arial, sans-serif; + +$intel-blue: #0071c5; +$light-blue: #00aeef; +$pale-blue: #7ed3f7; + +$primary: $intel-blue; + +$red: #ed1c24; +$orange: #ffa300; +$yellow: #f3d54e; +$green: #c4d600; +$cyan: $light-blue; +$gray: #939598; +$dark-gray: #53565a; +$light-gray: #B1BABF; +$black: #000000; +$white: #ffffff; + +$danger: #ED1c24; +$success: #a6ce39; +$warning: #FDB813; + +$loading-color: $black; +$navbar-color: $intel-blue; + +.status-icon.secondary { + fill: $light-gray !important; +} -- cgit v1.2.3