import { ITheme } from './ITheme';

export const Base16AtelierDune: ITheme = {
  DisplayName: 'Base16 Atelier Dune',
  CodeStyles: {
    Keyword: {
      Color: 'd43552',
      FontWeight: 'bold',
    },
    Comment: {
      Color: '1fad83',
    },
    Plaintext: {
      Color: 'a6a28c',
    },
    Punctuation: {
      Color: 'a6a28c',
    },
    String: {
      Color: 'd43552',
    },
    Literal: {
      Color: 'd43552',
      FontWeight: 'bold',
    },
    Type: {
      Color: 'b854d4',
    },
    Tag: {
      Color: 'd73737',
    },
    AttributeName: {
      Color: 'b854d4',
    },
    Decimal: {
      Color: 'b65611',
    },
    NoCode: {
      Color: 'd73737',
    },
  },
  BackgroundStyle: {
    BackgroundColor: '6e6b5e',
  },
  LineNumberStyle: {
    Color: 'a6a28c',
    BackgroundColor: '6e6b5e',
  },
};
