blob: 250495336c5b0d5035c7ac3ef5d1e4ad0db2dc3f [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
@import '~@angular/material/theming';
@import '~@covalent/core/theming/all-theme';
@import '../common/styles/buttons';
@import '../common/styles/expansionPanels';
@import '../common/styles/menus';
@import '../common/styles/inputs';
@import '../common/styles/checkboxes';
@import '../common/styles/tables';
@import '../common/styles/links';
@import '../common/styles/buttonToggles';
@import '../common/styles/radios';
// Create a theme.
@mixin fds-theme($theme) {
// Include theme styles for core and each component used in your app.
// Alternatively, you can import and @include the theme mixins for each component
// that you are using.
@include angular-material-theme($theme);
@include covalent-theme($theme);
@include fds-buttons-theme($theme);
@include fds-expansion-panels-theme($theme);
@include fds-menus-theme($theme);
@include fds-input-element-theme($theme);
@include fds-checkboxes-theme($theme);
@include fds-tables-theme($theme);
@include fds-links-theme($theme);
@include fds-button-toggles-theme($theme);
@include fds-radios-theme($theme);
}