material-web/fab/lib/_fab-branded.scss
Elliott Marquez c89575a7d3 refactor(fab): modernize fab to latest style
PiperOrigin-RevId: 524975328
2023-04-17 16:06:30 -07:00

28 lines
516 B
SCSS

//
// Copyright 2023 Google LLC
// SPDX-License-Identifier: Apache-2.0
//
// go/keep-sorted start
@use '../../sass/theme';
@use '../../tokens';
// go/keep-sorted end
@mixin theme($tokens) {
$tokens: theme.validate-theme(tokens.md-comp-fab-branded-values(), $tokens);
@each $token, $value in $tokens {
--md-fab-branded-#{$token}: #{$value};
}
}
@mixin styles() {
$tokens: tokens.md-comp-fab-branded-values();
:host {
@each $token, $value in $tokens {
--_#{$token}: #{$value};
}
}
}