18 lines
563 B
JavaScript
18 lines
563 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
Object.defineProperty(exports, "teamsLightTheme", {
|
|
enumerable: true,
|
|
get: function() {
|
|
return teamsLightTheme;
|
|
}
|
|
});
|
|
const _createLightTheme = require("../../utils/createLightTheme.js");
|
|
const _brandColors = require("../../global/brandColors.js");
|
|
const _teamsFontFamilies = require("../../alias/teamsFontFamilies.js");
|
|
const teamsLightTheme = {
|
|
...(0, _createLightTheme.createLightTheme)(_brandColors.brandTeams),
|
|
..._teamsFontFamilies.fontFamilies
|
|
};
|