import { ITheme } from './ITheme';

export const Base16Gigavolt: ITheme = {
  DisplayName: 'Base16 Gigavolt',
  CodeStyles: {
    Keyword: {
      Color: '6187ff',
      FontWeight: 'bold',
    },
    Comment: {
      Color: 'fb6acb',
    },
    Plaintext: {
      Color: 'e9e7e1',
    },
    Punctuation: {
      Color: 'e9e7e1',
    },
    String: {
      Color: '6187ff',
    },
    Literal: {
      Color: '6187ff',
      FontWeight: 'bold',
    },
    Type: {
      Color: 'ae94f9',
    },
    Tag: {
      Color: 'ff661a',
    },
    AttributeName: {
      Color: 'ae94f9',
    },
    Decimal: {
      Color: '19f988',
    },
    NoCode: {
      Color: 'ff661a',
    },
  },
  BackgroundStyle: {
    BackgroundColor: '5a576e',
  },
  LineNumberStyle: {
    Color: 'e9e7e1',
    BackgroundColor: '5a576e',
  },
};
