All Projects â†’ mrmlnc â†’ Material Color

mrmlnc / Material Color

Licence: mit
🔆 The colour palette, based on Google's Material Design, for use in your project.

Programming Languages

stylus
462 projects

Projects that are alternatives of or similar to Material Color

Mdui
MDUI æ˜Żäž€äžȘćŸșäșŽ Material Design çš„ć‰ç«ŻæĄ†æž¶ă€‚
Stars: ✭ 3,342 (+2375.56%)
Mutual labels:  google, material, less
Cessie
Transpile your CSS bundle to support CSS variables, calc, and future CSS for legacy browsers.
Stars: ✭ 81 (-40%)
Mutual labels:  scss, less
Vue Mdc
Material web components for Vue.js
Stars: ✭ 1,217 (+801.48%)
Mutual labels:  google, material
Material Design For Bootstrap
Important! A new UI Kit version for Bootstrap 5 is available. Access the latest free version via the link below.
Stars: ✭ 9,463 (+6909.63%)
Mutual labels:  material, google-material
Three Dots
🔼 CSS loading animations made by single element.
Stars: ✭ 912 (+575.56%)
Mutual labels:  scss, less
Stylelint
A mighty, modern linter that helps you avoid errors and enforce conventions in your styles.
Stars: ✭ 9,350 (+6825.93%)
Mutual labels:  scss, less
Material Design Icons
Material Design Icons
Stars: ✭ 90 (-33.33%)
Mutual labels:  material, google-material
Material Axure Library
An Axure widget library based on Google Material Design.
Stars: ✭ 490 (+262.96%)
Mutual labels:  material, google-material
Bootstrap 4 Utilities
Bootstrap 4 utility classes in LESS CSS for Bootstrap 3 or any other projects.
Stars: ✭ 105 (-22.22%)
Mutual labels:  scss, less
Prettier
Prettier is an opinionated code formatter.
Stars: ✭ 41,411 (+30574.81%)
Mutual labels:  scss, less
Lemonj
侀äžȘ靱搑 CSS/LESS/SCSS çš„ćˆ†æžă€ćć‘łé“æŁ€æŸ„ć’Œè‡ȘćŠšćŒ–é‡æž„ć·„ć…·ă€‚
Stars: ✭ 112 (-17.04%)
Mutual labels:  scss, less
Wenk
😉 Lightweight pure CSS tooltip for the greater good
Stars: ✭ 694 (+414.07%)
Mutual labels:  scss, less
Android Iconics
Android-Iconics - Use any icon font, or vector (.svg) as drawable in your application.
Stars: ✭ 4,916 (+3541.48%)
Mutual labels:  material, google-material
Gulp Starter Kit
A simple Gulp 4 Starter Kit for modern web development.
Stars: ✭ 134 (-0.74%)
Mutual labels:  scss, less
Ngx Auth Firebaseui
Angular Material UI component for firebase authentication
Stars: ✭ 518 (+283.7%)
Mutual labels:  google, material
Vertical Rhythm
Put some typographical vertical rhythm in your CSS. LESS, Stylus and SCSS/SASS versions included.
Stars: ✭ 83 (-38.52%)
Mutual labels:  scss, less
Material.avalonia
Material design in AvaloniaUI
Stars: ✭ 126 (-6.67%)
Mutual labels:  material, google-material
Ngx Starter Kit
đŸ…°ïž Angular 🚀 NestJS 🐒 Starter Kit
Stars: ✭ 479 (+254.81%)
Mutual labels:  material, scss
Mui
Lightweight CSS framework
Stars: ✭ 4,462 (+3205.19%)
Mutual labels:  material, google-material
Webpack4.x
webpack4.xèŻŠç»†é…çœźæ­„éȘ€
Stars: ✭ 103 (-23.7%)
Mutual labels:  scss, less

Material Design Color

The colour palette, based on Google's Material Design, for use in your project.

Installation

  • git: git clone git://github.com/mrmlnc/material-color.git;
  • bower: bower install --save material-color
  • npm: npm install --save material-design-color;

Supported languages

Support for all popular css preprocessors:

How to use

Just import the file, whitch includes variables colors in your project.

// Less, SCSS, Stylus
@import "lib/material-color";

The build variable:

(@|$)clr-(color)-(range)

  • (@|$) - Sign of the variable in the preprocessor.
  • (color) - Color.
  • (range) - 100, 300, 700, A100 and so on. The default value of 500.

Example:

@import "lib/material-color";

.example-1 {
  background-color: @clr-blue;
}

.example-2 {
  background-color: @clr-green-700;
}

Additional variables

Additional variables for text based on Material Design Typography.

// Typography
clr-ui-display-4
clr-ui-display-3
clr-ui-display-2
clr-ui-display-1
clr-ui-headline
clr-ui-title
clr-ui-subhead-1
clr-ui-body-2
clr-ui-body-1
clr-ui-caption
clr-ui-menu
clr-ui-button

Mixin

There are provided lists of variables for looping through the colors. In order to use this functionality you must import file and call mixin(s):

@import "mixins/class-generator";

// Less
.material-color-class("red"); // another color or "all"
.material-color-class("red", background-color); // another property or empty (default: color)

// SCSS
@include material-color-class("red"); // another color or "all"
@include material-color-class("red", background-color); // another property or empty (default: color)

// Stylus
material-color-class('red'); // another color or 'all'
material-color-class('red', background-color); // another property or empty (default: color)

Thanks

Changelog

See the Releases section of our GitHub project for changelogs for each release version.

License

This software is released under the terms of the MIT license.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].