Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(*): Update themes import references #5666

Merged
merged 1 commit into from
Jan 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions en/components/general/angular-grid-overview-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -208,8 +208,10 @@ Ignite UI has the most expressive styling capabilities of the major Angular fram
With just a few lines of code, you can easily change the theme of your components. Being developed in SASS, the API is easy and allows for theming granularity on different levels from a single component, multiple components, or the entire suite.

```scss
// Import the IgniteUI themes library first
@import '~igniteui-angular/lib/core/styles/themes/index';
@use "igniteui-angular/theming" as *;

// IMPORTANT: Prior to Ignite UI for Angular version 13 use:
// @import '~igniteui-angular/lib/core/styles/themes/index';

$primary-color: #2ab759; // Some green shade I like
$secondary-color: #f96a88; // Watermelon pink
Expand Down
6 changes: 4 additions & 2 deletions jp/components/general/angular-grid-overview-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -209,8 +209,10 @@ Ignite UI には、主要な Angular フレームワークの中で最も機能
最小限のコードで、コンポーネントのテーマを簡単に変更できます。SASS で開発されている API は簡単で、単一のコンポーネント、複数のコンポーネント、またはすべてのコンポーネントでテーマをカスタマイズできます。

```scss
// 最初に IgniteUI テーマ ライブラリをインポートします
@import '~igniteui-angular/lib/core/styles/themes/index';
@use "igniteui-angular/theming" as *;

// IMPORTANT: Prior to Ignite UI for Angular version 13 use:
// @import '~igniteui-angular/lib/core/styles/themes/index';

$primary-color: #2ab759; // Some green shade I like
$secondary-color: #f96a88; // Watermelon pink
Expand Down
6 changes: 4 additions & 2 deletions kr/components/themes/global-theme.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,10 @@ To generate a global theme we're going to be including two mixins `core` and `th
Let's create a custom global theme that will use the primary and secondary colors of our company.

```scss
// Import the IgniteUI themes library first
@import '~igniteui-angular/lib/core/styles/themes/index';
@use "igniteui-angular/theming" as *;

// IMPORTANT: Prior to Ignite UI for Angular version 13 use:
// @import '~igniteui-angular/lib/core/styles/themes/index';

$primary-color: #2ab759; // Some green shade I like
$secondary-color: #f96a88; // Watermelon pink
Expand Down
Loading