﻿/*
Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/

CKEDITOR.addStylesSet( 'AOC',
[
    // Inline Styles
    { name : 'Rouge niveau 1', element : 'span', styles : { 'color' : '#891218' } },
    { name : 'Rouge niveau 2', element : 'span', styles : { 'color' : '#741b1f' } },
	{ name : 'Beige', element : 'span', styles : { 'color' : '#ece9e1' } },
    { name : 'Gris', element : 'span', styles : { 'color' : '#666666' } },
	{ name : 'Noir', element : 'span', styles : { 'color' : '#191919' } }
]);

CKEDITOR.editorConfig = function( config )
{
	config.stylesCombo_stylesSet = 'AOC';
};

