File tree Expand file tree Collapse file tree 4 files changed +32
-18
lines changed
projects/igniteui-angular/src/lib/core/styles/themes/generators Expand file tree Collapse file tree 4 files changed +32
-18
lines changed Original file line number Diff line number Diff line change 10
10
@use ' igniteui-theming/sass/themes' as * ;
11
11
@use ' igniteui-theming/sass/themes/charts' as * ;
12
12
13
+ /// /
13
14
/// @group themes
14
15
/// @access public
16
+ /// @author <a href="https://github.com/simeonoff" target="_blank">Simeon Simeonoff</a>
17
+ /// /
18
+
15
19
/// Generates an Ignite UI for Angular global theme.
16
20
/// @param {Map} $palette - An palette to be used by the global theme.
17
21
/// @param {Map} $schema [$light-schema] - The schema used as basis for styling the components.
442
446
}
443
447
}
444
448
445
- /// @group themes
446
- /// @access public
447
- /// Creates a global material theme that can be used with light backgrounds.
449
+ /// A wrapper around the theme mixin. Creates a global material theme that can be used with light backgrounds.
448
450
/// @param {Map} $palette - An palette to be used by the global theme.
449
451
/// @param {List} $exclude [( )] - A list of ig components to be excluded from the global theme styles.
452
+ /// @see {mixin} theme
450
453
@mixin light-theme (
451
454
$palette ,
452
455
$exclude : (),
476
479
);
477
480
}
478
481
479
- /// @group themes
480
- /// @access public
481
- /// Creates a global material theme that can be used with dark backgrounds.
482
+ /// A wrapper around the theme mixin. Creates a global material theme that can be used with dark backgrounds.
482
483
/// @param {Map} $palette - An palette to be used by the global theme.
483
484
/// @param {List} $exclude [( )] - A list of igx components to be excluded from the global theme styles.
485
+ /// @see {mixin} theme
484
486
@mixin dark-theme (
485
487
$palette ,
486
488
$exclude : (),
Original file line number Diff line number Diff line change 2
2
@use ' ../schemas' as * ;
3
3
@use ' igniteui-theming/sass/color' as * ;
4
4
5
+ /// /
5
6
/// @group themes
6
7
/// @access public
7
- /// Creates a global bootstrap-like theme that can be used with light backgrounds.
8
+ /// @author <a href="https://github.com/simeonoff" target="_blank">Simeon Simeonoff</a>
9
+ /// /
10
+
11
+ /// A wrapper around the theme mixin. Creates a global bootstrap-like theme that can be used with light backgrounds.
8
12
/// @param {Map} $palette - An palette to be used by the global theme.
9
13
/// @param {List} $exclude [( )] - A list of ig components to be excluded from the global theme styles.
14
+ /// @see {mixin} theme
10
15
@mixin bootstrap-light-theme (
11
16
$palette ,
12
17
$exclude : (),
39
44
);
40
45
}
41
46
42
- /// @group themes
43
- /// @access public
44
- /// Creates a global bootstrap-like theme that can be used with dark backgrounds.
47
+ /// A wrapper around the theme mixin. Creates a global bootstrap-like theme that can be used with dark backgrounds.
45
48
/// @param {Map} $palette - An palette to be used by the global theme.
46
49
/// @param {List} $exclude [( )] - A list of ig components to be excluded from the global theme styles.
50
+ /// @see {mixin} theme
47
51
@mixin bootstrap-dark-theme (
48
52
$palette ,
49
53
$exclude : (),
Original file line number Diff line number Diff line change 2
2
@use ' ../schemas' as * ;
3
3
@use ' igniteui-theming/sass/color' as * ;
4
4
5
+ /// /
5
6
/// @group themes
6
7
/// @access public
7
- /// Creates a global fluent theme that can be used with light backgrounds.
8
+ /// @author <a href="https://github.com/simeonoff" target="_blank">Simeon Simeonoff</a>
9
+ /// /
10
+
11
+ /// A wrapper around the theme mixin. Creates a global fluent theme that can be used with light backgrounds.
8
12
/// @param {Map} $palette - An palette to be used by the global theme.
9
13
/// @param {List} $exclude [( )] - A list of ig components to be excluded from the global theme styles.
14
+ /// @see {mixin} theme
10
15
@mixin fluent-light-theme (
11
16
$palette ,
12
17
$exclude : (),
39
44
);
40
45
}
41
46
42
- /// @group themes
43
- /// @access public
44
- /// Creates a global fluent theme that can be used with dark backgrounds.
47
+ /// A wrapper around the theme mixin. Creates a global fluent theme that can be used with dark backgrounds.
45
48
/// @param {Map} $palette - An palette to be used by the global theme.
46
49
/// @param {List} $exclude [( )] - A list of ig components to be excluded from the global theme styles.
50
+ /// @see {mixin} theme
47
51
@mixin fluent-dark-theme (
48
52
$palette ,
49
53
$exclude : (),
Original file line number Diff line number Diff line change 2
2
@use ' ../schemas' as * ;
3
3
@use ' igniteui-theming/sass/color' as * ;
4
4
5
+ /// /
5
6
/// @group themes
6
7
/// @access public
7
- /// Creates a global indigo theme that can be used with light backgrounds.
8
+ /// @author <a href="https://github.com/simeonoff" target="_blank">Simeon Simeonoff</a>
9
+ /// /
10
+
11
+ /// A wrapper around the theme mixin. Creates a global indigo theme that can be used with light backgrounds.
8
12
/// @param {Map} $palette - An palette to be used by the global theme.
9
13
/// @param {List} $exclude [( )] - A list of ig components to be excluded from the global theme styles.
14
+ /// @see {mixin} theme
10
15
@mixin indigo-light-theme (
11
16
$palette ,
12
17
$exclude : (),
39
44
);
40
45
}
41
46
42
- /// @group themes
43
- /// @access public
44
- /// Creates a global indigo theme that can be used with dark backgrounds.
47
+ /// A wrapper around the theme mixin. Creates a global indigo theme that can be used with dark backgrounds.
45
48
/// @param {Map} $palette - An palette to be used by the global theme.
46
49
/// @param {List} $exclude [( )] - A list of ig components to be excluded from the global theme styles.
50
+ /// @see {mixin} theme
47
51
@mixin indigo-dark-theme (
48
52
$palette ,
49
53
$exclude : (),
You can’t perform that action at this time.
0 commit comments