Files
starface-outlook-sync-addin/node_modules/@fluentui/theme
Stefan Hacker 37ad745546 first commit
2026-04-03 09:38:48 +02:00
..
2026-04-03 09:38:48 +02:00
2026-04-03 09:38:48 +02:00
2026-04-03 09:38:48 +02:00
2026-04-03 09:38:48 +02:00
2026-04-03 09:38:48 +02:00
2026-04-03 09:38:48 +02:00
2026-04-03 09:38:48 +02:00
2026-04-03 09:38:48 +02:00
2026-04-03 09:38:48 +02:00
2026-04-03 09:38:48 +02:00
2026-04-03 09:38:48 +02:00
2026-04-03 09:38:48 +02:00
2026-04-03 09:38:48 +02:00

@fluentui/theme

Basic building blocks for Fluent UI React Themes

Define your own theme based on an existing theme:

import { createTheme, Theme, FontWeights } from '@fluentui/theme';

export const MyTheme: Theme = createTheme({
  components: {
    Button: {
      variants: {
        fontWeight: FontWeights.semibold,
        paddingLeft: '24px',
        paddingRight: '24px',
      },
    },
  },
});