Skip to content

Commit

Permalink
Created Prodrivers theme
Browse files Browse the repository at this point in the history
  • Loading branch information
horgeon committed Oct 10, 2023
1 parent e301186 commit aefed87
Show file tree
Hide file tree
Showing 27 changed files with 49,463 additions and 834 deletions.
26 changes: 1 addition & 25 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,31 +6,7 @@ const autoprefixer = require('autoprefixer');
const pkg = require('./package.json');

const SWATCHES = [
'cerulean',
'cosmo',
'cyborg',
'darkly',
'flatly',
'journal',
'litera',
'lumen',
'lux',
'materia',
'minty',
'morph',
'pulse',
'quartz',
'sandstone',
'simplex',
'sketchy',
'slate',
'solar',
'spacelab',
'superhero',
'united',
'vapor',
'yeti',
'zephyr'
'prodrivers'
];

const BUILD_DIR = 'build/';
Expand Down
30 changes: 30 additions & 0 deletions dist/prodrivers/_bootswatch.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
// Prodrivers 5.3.2
// Bootswatch


// Variables

// Typography

body {
-webkit-font-smoothing: antialiased;
}

// Indicators

.badge {
&.bg-light {
color: $dark;
}
}

// Progress bars

.progress {
@include box-shadow(none);

.progress-bar {
font-size: 8px;
line-height: 8px;
}
}
69 changes: 69 additions & 0 deletions dist/prodrivers/_variables.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
// Prodrivers 5.3.2
// Bootswatch

$theme: "prodrivers" !default;

//
// Color system
//

$white: #fff !default;
$gray-100: #f8f9fa !default;
$gray-200: #e9ecef !default;
$gray-300: #dee2e6 !default;
$gray-400: #ced4da !default;
$gray-500: #adb5bd !default;
$gray-600: #868e96 !default;
$gray-700: #495057 !default;
$gray-800: #373a3c !default;
$gray-900: #212529 !default;
$black: #000 !default;

$blue: #2780e3 !default;
$indigo: #6610f2 !default;
$purple: #613d7c !default;
$pink: #e83e8c !default;
$red: #ff0039 !default;
$orange: #f0ad4e !default;
$yellow: #ff7518 !default;
$green: #3fb618 !default;
$teal: #20c997 !default;
$cyan: #9954bb !default;

$primary: $blue !default;
$secondary: $gray-800 !default;
$success: $green !default;
$info: $cyan !default;
$warning: $yellow !default;
$danger: $red !default;
$light: $gray-100 !default;
$dark: $gray-800 !default;

$min-contrast-ratio: 2.6 !default;

// Options

$enable-rounded: false !default;

// Body

$body-color: $gray-800 !default;

// Fonts

// stylelint-disable-next-line value-keyword-case
$font-family-sans-serif: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !default;
$headings-font-weight: 400 !default;

// Navbar

$navbar-dark-hover-color: rgba($white, 1) !default;
$navbar-light-hover-color: rgba($black, .9) !default;

// Alerts

$alert-border-width: 0 !default;

// Progress bars

$progress-height: .5rem !default;
Loading

0 comments on commit aefed87

Please sign in to comment.