Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <div class="container">
	<div class="btn">
		Demo Button
	</div>


	<select>
		<option value="horizon-yellow">$horizon-yellow</option>
		<option value="light-green">$light-green</option>
		<option value="dark-green">$dark-green</option>
		<option value="light-orange">$light-orange</option>
		<option value="dark-orange">$dark-orange</option>
		<option value="light-red">$light-red</option>
		<option value="dark-red">$dark-red</option>
		<option value="light-purple">$light-purple</option>
		<option value="dark-purple">$dark-purple</option>
		<option value="light-magenta">$light-magenta</option>
		<option value="dark-magenta">$dark-magenta</option>
		<option value="light-cyan">$light-cyan</option>
		<option value="dark-cyan">$dark-cyan</option>
	</select>
	<p>This codepen shows how to create color themes using a sass mixin. This demo shows how to use a second variation that doesn't change the colors of sub-themed elements.</p>
	
	<div class=" light-cyan colorblock"></div>
	<div class=" dark-cyan colorblock"></div>
	<div class=" light-green colorblock"></div>
	<div class=" dark-green colorblock"></div>
	<div class=" horizon-yellow colorblock"></div>
	<div class=" light-orange colorblock"></div>
	<div class=" dark-orange colorblock"></div>
	<div class=" light-red colorblock"></div>
	<div class=" dark-red colorblock"></div>
	<div class=" light-magenta colorblock"></div>
	<div class=" dark-magenta colorblock"></div>
	<div class=" light-purple colorblock"></div>
	<div class=" dark-purple colorblock"></div>
	
	
	
</div>
              
            
!

CSS

              
                //Color Variable names
$horizon-yellow: #FFC938; $light-green: #88C249; $dark-green: #538B3E; $light-orange: #EB901B; $dark-orange: #EF6C22; $light-red: #EE4237; $dark-red: #C62629; $light-purple: #93406B; $dark-purple: #4A2D88; $light-magenta: #E91B63; $dark-magenta: #A42763; $light-cyan: #18BCD4; $dark-cyan: #0D8390; 
//Color lists
/*
Due to Sass's limitations, this uses two parallel lists colors. Adding a new color requires adding the color to both lists, first as its name, and secondly as the variable.
*/

//class names list
$colors-list: 		('horizon-yellow', 'light-green', 'dark-green', 'light-orange', 'dark-orange', 'light-red', 'dark-red', 'light-purple', 'dark-purple', 'light-magenta', 'dark-magenta', 'light-cyan', 'dark-cyan');
//class name color values
$colors-list-vars:	($horizon-yellow ,  $light-green,  $dark-green,  $light-orange,  $dark-orange,  $light-red,  $dark-red,  $light-purple,  $dark-purple,  $light-magenta,  $dark-magenta,  $light-cyan,  $dark-cyan);

// Whatever is inputted $i used as the class name
//$item is the position in value of the position in the sass list.
@mixin propertyColor($input) {
	$i: 1;//counter init
	@each $item in $colors-list {
		.#{$item} & {
			#{$input}: nth($colors-list-vars, $i);  //use the position of colors-list to grab the equivilent color value
		}
		$i: $i + 1;  //counter
	}
}


@mixin propertyThisColor($input) {
	$i: 1;//counter init
	@each $item in $colors-list {
		&.#{$item} {
			#{$input}: nth($colors-list-vars, $i);  //use the position of colors-list to grab the equivilent color value
		}
		$i: $i + 1;  //counter
	}
}


/*
	Page styling!
*/

.btn {
	display: inline-block;
	background-color: $horizon-yellow; //needs a default color
	padding: 10px;
	color: black;
	[class*='dark'] & { 
		//we can be clever and change the color of the button text based on weather the theme is dark or light.
		color: white; 
	}
	//assign the button color
	@include propertyColor(background-color);
	transition: all .3s ease;
}

.container {
	padding: 20px;
	border-width: 10px;
	border-color: $horizon-yellow;
	border-style: solid;
	background-color: white;
	@include propertyColor(color);
	@include propertyColor(border-color);
	transition: color .3s ease, border-color .3s ease;
}
body {
	transition: background-color .3s ease;
	&[class*='dark']{
		background-color: black;
	}
}
.colorblock {
	@include propertyThisColor(background-color);
	display:  inline-block;
	width: 30px; 
	height: 30px;
}
              
            
!

JS

              
                (function ($) {
"use strict";
var Engine;
$(document).ready(function() {
	Engine = {
		ui : {
			themeTest : function() {
				/*==============================
				1)  demo theming
				Works with the drop down menu :)
				===============================*/
				
				$( "select" ).change(function() {
					var test = $('select').val();
					$("body").removeAttr('class');
				  $("body").addClass(test);
				});
			}
		} // ui
	}; // Engine
	Engine.ui.themeTest();
}); // Engine
}(jQuery));

              
            
!
999px

Console