How to use the @uifabric/fluent-theme.NeutralColors.gray130 function in @uifabric/fluent-theme

To help you get started, we’ve selected a few @uifabric/fluent-theme examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github OfficeDev / office-ui-fabric-react / packages / dashboard / src / components / Wizard / SetupWizardActionBar.styles.ts View on Github external
import { NeutralColors, SharedColors } from '@uifabric/fluent-theme';
import { DefaultFontStyles, FontWeights } from 'office-ui-fabric-react';
import { ISetupWizardActionBarStyles } from './SetupWizardActionBar.types';

const actionLinkStyle = {
  color: NeutralColors.gray130
};
export const getStyles = (): ISetupWizardActionBarStyles => {
  return {
    root: {
      whiteSpace: 'nowrap',
      width: '100%',
      display: 'flex',
      flexDirection: 'row',
      border: `1px solid ${NeutralColors.gray40}`,
      height: '75px',
      alignItems: 'center'
    },
    backAction: [
      DefaultFontStyles.medium,
      actionLinkStyle,
      {
github OfficeDev / office-ui-fabric-react / packages / dashboard / src / components / Wizard / SetupWizard.styles.ts View on Github external
export const getSetupWizardStyles = (): ISetupWizardStyles => {
  return {
    wizardContainer: [
      DefaultFontStyles.medium,
      {
        color: NeutralColors.gray130,
        display: 'flex',
        flexDirection: 'column',
        height: '100%'
      }
    ],
    titleSection: {
      border: `1px solid ${NeutralColors.gray40}`,
      height: '75px'
    },
    actionBarSection: {
      whiteSpace: 'nowrap',
      width: '100%',
      display: 'flex',
      flexDirection: 'row',
      border: `1px solid ${NeutralColors.gray40}`,
      height: '75px',
github microsoft / BotFramework-Composer / Composer / packages / extensions / obiformeditor / src / Form / fields / styles.ts View on Github external
&:not(:last-child) {
    border-bottom: 1px solid ${NeutralColors.gray30};
  }
`;

export const customObjectFieldItem = css`
  flex: 1;

  & + & {
    margin-left: 20px;
  }
`;

export const customObjectFieldLabel = css`
  color: ${NeutralColors.gray130};
  font-size: 12px;
  margin-left: 7px;
  padding-bottom: 5px;
`;