UNPKG

@elastic/eui

Version:

Elastic UI Component Library

30 lines (29 loc) 1.25 kB
/* * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one * or more contributor license agreements. Licensed under the Elastic License * 2.0 and the Server Side Public License, v 1; you may not use this file except * in compliance with, at your election, the Elastic License 2.0 or the Server * Side Public License, v 1. */ import { buildTheme } from '../../services/theme/utils'; import { colors } from './global_styling/variables/_colors'; import { animation } from './global_styling/variables/_animation'; import { breakpoint } from './global_styling/variables/_breakpoint'; import { base, size } from './global_styling/variables/_size'; import { border } from './global_styling/variables/_borders'; import { levels } from './global_styling/variables/_levels'; import { font } from './global_styling/variables/_typography'; import { focus } from './global_styling/variables/_states'; export var AMSTERDAM_NAME_KEY = 'EUI_THEME_AMSTERDAM'; export var euiThemeAmsterdam = { colors: colors, base: base, size: size, border: border, font: font, animation: animation, breakpoint: breakpoint, levels: levels, focus: focus }; export var EuiThemeAmsterdam = buildTheme(euiThemeAmsterdam, AMSTERDAM_NAME_KEY);