{"id":28386467,"url":"https://github.com/igniteui/igniteui-theming","last_synced_at":"2026-02-20T09:09:55.961Z","repository":{"id":37452057,"uuid":"504063567","full_name":"IgniteUI/igniteui-theming","owner":"IgniteUI","description":"A set of Sass mixins, functions, and variables used to create themes for a variety of UI frameworks built by Infragistics.","archived":false,"fork":false,"pushed_at":"2025-06-10T09:54:04.000Z","size":2427,"stargazers_count":12,"open_issues_count":18,"forks_count":1,"subscribers_count":29,"default_branch":"master","last_synced_at":"2025-06-10T10:05:13.163Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"SCSS","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/IgniteUI.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2022-06-16T07:54:42.000Z","updated_at":"2025-06-10T09:53:38.000Z","dependencies_parsed_at":"2023-09-25T16:19:46.727Z","dependency_job_id":"cb9745c1-5898-49e4-ac46-7786afee8b2a","html_url":"https://github.com/IgniteUI/igniteui-theming","commit_stats":{"total_commits":84,"total_committers":8,"mean_commits":10.5,"dds":"0.34523809523809523","last_synced_commit":"733926ee432cb66efdbe1045ddac5c51ea1bb071"},"previous_names":[],"tags_count":257,"template":false,"template_full_name":null,"purl":"pkg:github/IgniteUI/igniteui-theming","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IgniteUI%2Figniteui-theming","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IgniteUI%2Figniteui-theming/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IgniteUI%2Figniteui-theming/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IgniteUI%2Figniteui-theming/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/IgniteUI","download_url":"https://codeload.github.com/IgniteUI/igniteui-theming/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IgniteUI%2Figniteui-theming/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":262076528,"owners_count":23255027,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-05-30T14:43:13.354Z","updated_at":"2026-02-17T18:05:15.469Z","avatar_url":"https://github.com/IgniteUI.png","language":"SCSS","readme":"\n\u003ch1 align=\"center\"\u003e\n  Ignite UI Theming - from Infragistics \n\u003c/h1\u003e\n\n[![npm version](https://badge.fury.io/js/igniteui-theming.svg)](https://badge.fury.io/js/igniteui-theming)\n\nThe 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.\n\n## Palettes\nWe 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:\n\n![Palettes](https://user-images.githubusercontent.com/45598235/189592212-0d58b08d-3c98-4f27-8ec3-c6f674c9942b.png)\n\nTo access any of the colors in the palettes, you can use the `color` function:\n\n```scss\nbackground: color($light-material-palette, 'primary', 500);\n```\n\nYou can take a further look on what color functions and mixins the package contains and how to use them in the [Colors Wiki Page](https://github.com/IgniteUI/igniteui-theming/wiki/Colors-(Draft))\n\n\n## Typography\nAnother 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.\n\n![Typography](https://user-images.githubusercontent.com/45598235/189596034-d8697bc1-e683-4d4a-a113-96e17fc90d4b.png)\n\nYou 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.\n\n```scss\n@include typography($font-family: $material-typeface, $type-scale: $material-type-scale);\n```\n\nLearn more about the typography module in the package by checking out the [Typography Wiki Page](https://github.com/IgniteUI/igniteui-theming/wiki/Typography-(Draft))\n\n## Elevations\nThe 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.\n\n![Elevations](https://user-images.githubusercontent.com/45598235/189627744-1fa47d35-6b3b-4b7a-b26e-5b46fe4311a4.png)\n\nYou can set elevations 0-24, by using the `elevation` function, which accepts the elevation level as an argument:\n\n```scss\nbox-shadow: elevation(12);\n```\n\nLearn more about elevations and their abilities in the [Elevations Wiki Page](https://github.com/IgniteUI/igniteui-theming/wiki/Elevations-(draft))\n\n## Usage\n\nIn order to use the Ignite UI Theming in your application you should install the `igniteui-theming` package:\n\n```\nnpm install igniteui-theming\n```\n\nNext, you will need to **use** it in the file that you want like this:\n\n```scss\n@use '.../node_modules/igniteui-theming/' as *;\n```\n\nYou can also **use** just a fraction of the package:\n\n```scss\n@use '.../node_modules/igniteui-theming/sass/color' as *;\n```\n\nWe 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:\n\n```scss\n@use '.../node_modules/igniteui-theming/sass/typography/presets' as *;\n```\n\nYou can read more about what the package contains on the [Wiki page](https://github.com/IgniteUI/igniteui-theming/wiki)\n\n## Linting and Testing\n\nTo scan the project for linting errors, run\n\n```\nnpm run lint\n```\n\nTo run the suite of tests, run\n\n```\nnpm run test\n```\n\n## Building and Running API Docs\n\nTo build the docs, run\n\n```\nnpm run build:docs\n```\n\nTo start the docs in your browser, run\n\n```\nnpm run serve:docs\n```\n\n## Testing and Debugging\n\n### Preview Palettes\nTo 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.\n\n```\nnpm run preview:palette -- --palette=material --variant=light --out\n```\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Figniteui%2Figniteui-theming","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Figniteui%2Figniteui-theming","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Figniteui%2Figniteui-theming/lists"}