A minimal set of styles, themes and colors that are standardized across the Azure IoT organization.
Перейти к файлу
Patricio Beltran bb1f0d6212
Fix contrast color on toggle circle for dark theme (#33)
2020-02-03 11:45:18 -08:00
.config Adding Service Tree mapping to repository. 2018-03-22 01:25:01 +00:00
example Remove deprecated stuff and move icons to fluent 2019-09-11 15:30:25 -07:00
src Fix contrast color on toggle circle for dark theme (#33) 2020-02-03 11:45:18 -08:00
.gitignore Add title bar color 2018-08-23 11:51:42 -07:00
.npmignore Add & to mixin 2018-04-17 18:11:41 -07:00
CHANGELOG.md Fix contrast color on toggle circle for dark theme (#33) 2020-02-03 11:45:18 -08:00
CONTRIBUTING.md v6.0.0 - Align to new design language (#17) 2019-01-30 18:15:08 -08:00
LICENSE Add open source related files 2018-06-25 19:16:36 -07:00
README.md Update for open source 2018-06-27 18:22:22 -07:00
package.json Fix contrast color on toggle circle for dark theme (#33) 2020-02-03 11:45:18 -08:00

README.md

Azure IoT Fluent CSS Library

The Azure IoT Fluent CSS Library is a minimal set of styles, themes and colors that are standardized across the Azure IoT organization. It is created to help unify the look and feel of common experiences across the various teams. The library provides extremely easy theming using predefined color variables.

Usage

Install as a package via npm with the command npm install @microsoft/azure-iot-ux-fluent-css.

In your custom.scss, youll import the library's source Sass files. You are free to pick and choose the parts that you need.

@import "~@microsoft/azure-iot-ux-fluent-css/src/colors";
@import "~@microsoft/azure-iot-ux-fluent-css/src/mixins";

With that setup in place, you can begin to modify any of the Sass variables and maps in your custom.scss.

Theming

To theme your app, wrap the themed properties in @themify mixin.

.symbol {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: $gutter-small;

    @include themify {
        fill: themed('color-fill-tile-symbol');
        stroke: themed('color-stroke-tile-symbol');
    }    
}

The above SCSS will generate two separate theme variations.

.symbol {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 16px;
}

.theme-dark .symbol {
    fill: #FFFFFF;
    stroke: #FFFFFF; 
}

.theme-light .symbol {
    fill: #212121;
    stroke: #212121;
}

This technique is relatively efficient, as only the necessary css markups that vary between the themes are generated.

Customization

It is easy to customize and build on top of the Common IoT Fluent CSS Library. The library includes the colors in a Sass map of key value pairs. All Sass maps include the !default flag and can be overridden and extended without modifying the library's source code.

Modify map

To modify an existing color in our $themes map, simply redefine the key value pair in your custom Sass file:

$theme-dark: (
    color-fill-tile-symbol: #ff4136
);

Add to map

To add a new color to one of our existing themes, add the new key and value:

$theme-dark: (
    color-fill-tile-symbol-new: #aa4136
);

Remove from map

To remove colors from $themes, use map-remove:

$theme-dark: map-remove($theme-dark, "color-fill-tile-symbol");

Extend $themes with a custom theme

To extend the $themes map with new themes, add the new map of colors:

$themes: (
    christmas: (
        color-fill-tile-symbol: #ff4136,
        color-stroke-tile-symbol: #36FF53
    )    
);

See the example directory for sample consumption code. Use npm run build to see the sample css output.

Contributing

This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.microsoft.com.

When you submit a pull request, a CLA-bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.