blob: 49f90922b5f3c82dd4ea8f08469da2aa58758148 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2017 SSI Schaefer IT Solutions GmbH and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* SSI Schaefer IT Solutions GmbH
*******************************************************************************/
package org.eclipse.tea.core.ui.config;
import org.eclipse.tea.core.services.TaskingConfigurationExtension;
import org.eclipse.tea.core.services.TaskingConfigurationExtension.TaskingConfig;
import org.osgi.service.component.annotations.Component;
@TaskingConfig(description = "TEA Console Configuration")
@Component
public class TaskingConsoleConfig implements TaskingConfigurationExtension {
@TaskingConfigProperty(description = "Use colored streams")
public Boolean useColors = true;
@TaskingConfigProperty(description = "Force colors to dark theme")
public Boolean useDarkColors = false;
}