styles.scss 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. // Color System Overrides
  2. $white: #fff !default;
  3. $gray-100: #f8f9fa !default;
  4. $gray-200: #e9ecef !default;
  5. $gray-300: #dee2e6 !default;
  6. $gray-400: #ced4da !default;
  7. $gray-500: #adb5bd !default;
  8. $gray-600: #6c757d !default;
  9. $gray-700: #495057 !default;
  10. $gray-800: #343a40 !default;
  11. $gray-900: #212529 !default;
  12. $black: #000 !default;
  13. $yellow: #ffc107 !default;
  14. $red: #dd3d31 !default;
  15. $green: #28a745 !default;
  16. $blue: #2092ed !default;
  17. $purple: #8c43dd !default;
  18. $gray-100: #f9f9fc !default;
  19. $primary: $red !default;
  20. $info: $purple !default;
  21. $twitter: #1da1f2 !default;
  22. $github: #333333 !default;
  23. $facebook: #3b5998 !default;
  24. $twitch: #6441A4 !default;
  25. $theme-colors: (
  26. "theme": $red,
  27. "template": $blue,
  28. "snippet": $yellow,
  29. "guide": $green,
  30. "twitter": $twitter,
  31. "github": $github,
  32. "facebook": $facebook,
  33. "twitch": $twitch,
  34. "white": $white
  35. );
  36. // Font Size
  37. $small-font-size: 85%;
  38. // Set Contrast Threshold
  39. $yiq-contrasted-threshold: 195 !default;
  40. // Border Radius Overrides
  41. $border-radius: 0.25rem !default;
  42. $border-radius-lg: 0.5rem !default;
  43. $card-border-radius: $border-radius-lg;
  44. $btn-border-radius-lg: $border-radius;
  45. // Box Shadow Overrides
  46. $box-shadow-sm: 0 0.125rem 0.25rem 0 fade-out($gray-900, .8) !default;
  47. $box-shadow: 0 0.15rem 1.75rem 0 fade-out($gray-900, .85) !default;
  48. $box-shadow-lg: 0 2rem 1.5rem -1.5rem fade-out($gray-900, 0.85), 0 0 1.5rem 0.5rem fade-out($gray-900, 0.95) !default;
  49. // Custom Vox Shadow Variables
  50. $box-shadow-lg-hover: 0 2.25rem 1.5rem -1.5rem fade-out($gray-900, 0.7), 0 0 1.5rem 0.5rem fade-out($gray-900, 0.95);
  51. // Font System Overrides
  52. $font-family-sans-serif: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", 'Noto Color Emoji' !default;
  53. $headings-font-weight: 600 !default;
  54. $text-muted: fade-out($gray-900, 0.65);
  55. $dark: $gray-900;
  56. // Adjust column spacing for symmetry
  57. $spacer: 1rem;
  58. $grid-gutter-width: $spacer * 1.5;
  59. // Tooltip Overrides
  60. $tooltip-bg: $gray-900 !default;
  61. $tooltip-opacity: 1 !default;
  62. @import "../assets/bootstrap/scss/bootstrap.scss";
  63. @import "global";
  64. @import "carbon";
  65. @import "navigation";
  66. @import "masthead";
  67. @import "cards";
  68. @import "animations";
  69. @import "preview";
  70. @import "mailchimp";
  71. @import "footer";
  72. @import "resources";
  73. @import "snippets";
  74. @import "post";
  75. @import "guides";
  76. @import "affiliate";
  77. @import "twitch";
  78. @import "extensions";