/* * (C) Copyright 2015 Netcentric AG. * * 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 */ package biz.netcentric.cq.tools.actool.history; public class HtmlConstants { private HtmlConstants() { } public static final String FONT_COLOR_BLACK = "<font color='black'>"; public static final String FONT_COLOR_ORANGE = "<font color='orange'>"; public static final String FONT_COLOR_RED = "<font color='red'>"; public static final String FONT_COLOR_GREEN = "<font color='green'>"; public static final String FONT_COLOR_SUCCESS_HTML_OPEN = "<font color='green'><b>"; public static final String FONT_COLOR_NO_SUCCESS_HTML_OPEN = "<font color='red'><b>"; public static final String FONT_COLOR_SUCCESS_HTML_CLOSE = "</b></font>"; }