Files
jitsi-meet/react/features/base/ui/components/BaseTheme.web.js
Horatiu Muresan 8ebca64af1 feat(dynamic-branding): Add custom theme branding (#10335)
- apply theming to various buttons
2021-11-15 10:37:54 +02:00

15 lines
279 B
JavaScript

// @flow
import { font, colors, colorMap, spacing, shape, typography, breakpoints } from '../Tokens';
import { createWebTheme } from '../functions';
export default createWebTheme({
font,
colors,
colorMap,
spacing,
shape,
typography,
breakpoints
});