Gathering detailed insights and metrics for igniteui-theming
Gathering detailed insights and metrics for igniteui-theming
Gathering detailed insights and metrics for igniteui-theming
Gathering detailed insights and metrics for igniteui-theming
A set of Sass mixins, functions, and variables used to create themes for a variety of UI frameworks built by Infragistics.
npm install igniteui-theming
Typescript
Module System
Node Version
NPM Version
35
Supply Chain
95
Quality
92.7
Maintenance
100
Vulnerability
99.6
License
SCSS (99.53%)
JavaScript (0.46%)
Total Downloads
441,641
Last Day
140
Last Week
3,045
Last Month
18,667
Last Year
280,018
11 Stars
220 Commits
1 Forks
30 Watching
41 Branches
15 Contributors
Minified
Minified + Gzipped
Latest Version
14.3.0
Package Id
igniteui-theming@14.3.0
Unpacked Size
1.39 MB
Size
135.14 kB
File Count
261
NPM Version
10.8.2
Node Version
20.18.0
Publised On
22 Nov 2024
Cumulative downloads
Total Downloads
Last day
-84.9%
140
Compared to previous day
Last week
-33.6%
3,045
Compared to previous week
Last month
-10.2%
18,667
Compared to previous month
Last year
80.7%
280,018
Compared to previous year
1
The Ignite UI Theming repository collects a set of Sass mixins, functions, and variables used to create themes for a variety of UI frameworks built by Infragistics. The theming package makes it super easy to create palettes, elevations and typography styles for your projects.
We provide four predefined palettes - material, bootstrap, fluent and indigo that have all the necessary colors along with diffent variants of those colors to make it even easier picking the right one for your case. Here's what they look like:
To access any of the colors in the palettes, you can use the color
function:
1background: color($light-material-palette, 'primary', 500);
You can take a further look on what color functions and mixins the package contains and how to use them in the Colors Wiki Page
Another valuable module of our theming package is the typography, helping you have consistency all over your project. There are again four typography presets for the four themes that we provide out of the box.
You can set any of the typefaces by using the typography
mixin, which accepts 2 arguments(font-family and type-scale). By default the typography is using the material typeface and type-scale.
1@include typography($font-family: $material-typeface, $type-scale: $material-type-scale);
Learn more about the typography module in the package by checking out the Typography Wiki Page
The theming package is providing one preset of shadows that can be used to give your components a lift. They're super helpful using with buttons, cards, navigation bars, etc.
You can set elevations 0-24, by using the elevation
function, which accepts the elevation level as an argument:
1box-shadow: elevation(12);
Learn more about elevations and their abilities in the Elevations Wiki Page
In order to use the Ignite UI Theming in your application you should install the igniteui-theming
package:
npm install igniteui-theming
Next, you will need to use it in the file that you want like this:
1@use '.../node_modules/igniteui-theming/' as *;
You can also use just a fraction of the package:
1@use '.../node_modules/igniteui-theming/sass/color' as *;
We provide presets for material, bootstrap, fluent and indigo themes for the color(light and dark palettes), typography and elevations fractions. You can import them into your scss file like this:
1@use '.../node_modules/igniteui-theming/sass/typography/presets' as *;
You can read more about what the package contains on the Wiki page
To scan the project for linting errors, run
npm run lint
To run the suite of tests, run
npm run test
To build the docs, run
npm run build:docs
To start the docs in your browser, run
npm run serve:docs
To preview a palette you can pass the palette (material
, bootstrap
, fluent
, indigo
) and variant (light
or dark
) to the palette
and variant
arguments respectively. If you want to output the result to a file in the ./dist
folder add the out
option.
npm run preview:palette -- --palette=material --variant=light --out
No vulnerabilities found.
No security vulnerabilities found.