1/// 2// Skin: Orange 3// Author: Tian Qi 4// Email: kitian616@outlook.com 5/// 6 7// main colors 8$main-color-1: #f92651; 9$text-color-1: #fff; 10 11$main-color-2: #fdb824; 12$text-color-2: #fff; 13 14$main-color-3: #ff8a64; 15$text-color-3: #fff; 16 17$main-color-theme-light: rgba(#000, .9); 18$main-color-theme-dark: rgba(#fff, .9); 19 20// page background 21$background-color: #fffdfa; 22 23// text colors 24$text-color-theme-light-d: rgba(#000, .95); 25$text-color-theme-light: rgba(#000, .85); 26$text-color-theme-light-l: rgba(#000, .5); 27 28$text-color-theme-dark-d: rgba(#fff, .95); 29$text-color-theme-dark: rgba(#fff, .85); 30$text-color-theme-dark-l: rgba(#fff, .65); 31 32$text-color-d: $text-color-theme-light-d; 33$text-color: $text-color-theme-light; 34$text-color-l: $text-color-theme-light-l; 35 36$text-background-color: rgba(#000, .05); 37 38// header and footer colors 39$header-text-color: $text-color-3; 40$header-background: linear-gradient(60deg, #ffa650 0%, #ff7b50 100%); 41 42$footer-text-color: $text-color-3; 43$footer-background: linear-gradient(60deg, #ffa650 0%, #ff7b50 100%); 44 45// border and shadow colors 46$border-color: mix($main-color-1, $background-color, 50%); 47$border-color-l: mix(#000, $background-color, 10%); 48$decorate-color: rgba(#000, .1); 49$mask-color: rgba(#000, .9); 50$select-color: rgba($main-color-3, .5); 51 52// function colors 53$green: #52c41a; 54$blue: #1890ff; 55$yellow: #fa8c16; 56$red: #f5222d; 57$text-color-function: #fff; 58 59// logo colors 60$mail-color: #0072c5; 61$facebook-color: #4267b2; 62$twitter-color: #1da1f2; 63$weibo-color: #e6162d; 64$google-plus-color:#ea4335; 65$telegram-color: #32afed; 66$medium-color: #000; 67$zhihu-color: #0084ff; 68$douban-color: #42bd56; 69$linkedin-color: #1074af; 70$github-color: #000; 71$npm-color: #fff; 72 73// highlight colors 74@import "skins/highlight/tomorrow-night-eighties";