Skip to content

zoinkbyzaptronic/modularscale-sass

 
 

Repository files navigation

Modular Scale

A modular scale is a list of values that share the same relationship. These values are often used to size type and create a sense of harmony in a design. Proportions within modular scales are all around us from the spacing of the joints on our fingers to branches on trees. These natural proportions have been used since the time of the ancient Greeks in architecture and design and can be a tremendously helpful tool to leverage for web designers.

Ems work especially well with modular scales as their recursive properties mimic modular scales making them more predictable and easier to manage. Pixels and other units work just fine and breakpoints in responsive web design can naturally fall on your scale to create better relevance to your text as all the values in your layout harmonize with each other.

To get started, you need to select a ratio and a base value. The base value is usually your text font size or 1em. Optionally you can add another value to create a double standard modular scale which might be useful to create more options for in-between values. This base size paired with a ratio such as the golden ratio or any musical proportion will create your scale of values which all share this proportion.

Install

Compass

  • Terminal: gem install modular-scale
  • Compass config: require 'modular-scale'
  • SCSS: @import 'modular-scale';

Bower

  • Terminal: bower install modular-scale
  • SCSS: @import '../link_to_component_dir/modular-scale';

Vanilla Sass

Compatibility

I have been working incredibly hard to make Modular Scale compatible with multiple versions of Sass. As a result, it will work and has been tested in Libsass, Sass 3.2, Sass 3.3, and Sass 3.4.

These are dramatically different environments so things may have slight differences. For best results, install via the gem with Compass.

Compass + Sass (best):

  • non-integer values work with the ms() function. (Compass only)
  • Significant speed increases as the gem does calculations natively in Ruby

Libsass:

  • Everything should be working, and work very quickly.

Vanilla Sass:

  • Works fine, but is slow when using multiple bases and ratios.

Usage

Modular Scale has two default variables that you should place with your other site wide variables. $ms-base is usually your font size or 1em and can have multiple values. $ms-ratio is the factor of change between each number so if the ratio is 1.5 then each number in the sequence will be 1.5 times that of the previous number. Just as you can have multiple bases you can have multiple ratios.

$ms-base: 1em;
$ms-ratio: $golden;

Modular-scale is used as a function. Simply pass it through in place of any value to generate a value based on a modular scale.

font-size: ms(2); // two up the modular scale
font-size: ms(2, 16px); // two up the modular scale with a base size of 16px, default is 1em
font-size: ms(2, 1em, $octave); // Same as above but on an octave scale

You can output a list to your terminal to help you find out what values are on your scale.

@debug ms-list($start, $end, $ms-base, $ms-ratio);

You can use a double standard scale by simply adding more base sizes in a space-separated list. note: the starting point of the scale will always be the first value in this list

.double-standard {
  width: ms(7, 1em 2em);
}

You can do the same thing with ratios

.multi-ratio {
  width: ms(7, 1em, $golden $octave);
}

You can use multiple $ms-bases and multiple $ms-ratio together

.multibase-multiratio {
  width: ms(7, 16px 24px, $golden $fourth);
}

Ratios

Modular scale includes functions for a number of classic design and musical scale ratios. You can add your own ratios as well.

By default, the variable $ms-ratio is set to $golden.

FunctionRatioDecimal value
$phi1:1.6181.618
$golden1:1.6181.618
$double-octave1:44
$major-twelfth1:33
$major-eleventh3:82.667
$major-tenth2:52.5
$octave1:22
$major-seventh8:151.875
$minor-seventh9:161.778
$major-sixth3:51.667
$minor-sixth5:81.6
$fifth2:31.5
$augmented-fourth1:√21.414
$fourth3:41.333
$major-third4:51.25
$minor-third5:61.2
$major-second8:91.125
$minor-second15:161.067

Add your own ratio in Sass by setting a variable and passing that to modular-scale.

$my-ratio: 1 / 3.14159265;
$ms-ratio: $my-ratio;

Responsive scales

At times you may want to have a scale with less contrast on small screens and big type with more contrast on larger screens. For this you can use the ms-respond mixin that allows you to plug in a range of ratios at various breakpoints.

First, you will need to set your range. A range is a list of ratio and breakpoint values from smallest to largest.

$ms-range:
  1.2 20em,
  1.3 30em,
  1.4 40em,
  1.5 50em,
  1.6 60em;

Now you can use the ms-respond mixin to output a range of values for a single point on a scale.

foo {
  @include ms-respond(font-size, 2);
}
foo { font-size: 1.44em; }
@media (min-width: 30em) { foo { font-size: 1.69em; } }
@media (min-width: 40em) { foo { font-size: 1.96em; } }
@media (min-width: 50em) { foo { font-size: 2.25em; } }
@media (min-width: 60em) { foo { font-size: 2.56em; } }

Licence

The MIT License (MIT)

Copyright © 2015 Scott Kellum (@scottkellum), Adam Stacoviak (@adamstac) and Mason Wendell (@codingdesigner)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

The software is provided “as is”, without warranty of any kind, express or implied, including but not limited to the warranties of merchantability, fitness for a particular purpose and non-infringement. In no event shall the authors or copyright holders be liable for any claim, damages or other liability, whether in an action of contract, tort or otherwise, arising from, out of or in connection with the software or the use or other dealings in the software.

About

Modular scale calculator built into your Sass

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • CSS 69.6%
  • Ruby 22.9%
  • JavaScript 6.3%
  • HTML 1.1%
  • PHP 0.1%