Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 5b3caeb77a6f7993c2b2a2e0da0282c4dbcdc2fe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
/*****************************************************************************
 * Copyright (c) 2012 CEA LIST.
 * 
 * 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:
 *  Camille Letavernier (CEA LIST) camille.letavernier@cea.fr
 *****************************************************************************/
 
/* 
 *	Papyrus CSS v0.9
 *	Sample
 */

* {
	
	/**
	*	GMF Display
	*/
	
	fontColor: black;
	fillColor:#C3D1DC;
	
	/* 	fontHeight:9; */
	
	/** 
	*	Gradient 
	*/
	
	/* 	gradientColor:white; */
	/* 	gradientStyle:vertical; */
	
	/*  
	*	Global gradient (Equivalent to the latter)
	*/
	
	gradient: white vertical; /* vertical white; is currently invalid */
	
	/* 
	*	Global gradient (2)
	*	Unsupported by diagrams (Color2 is unused) 
	*/
	
	/* 	gradient:white blue vertical */
	
	/**
	*	UML Display
	*/
	
	elementIcon: true;
	/* 	shadow:false; */
	/* 	qualifiedNameDepth:Full; */
	
	/** 
	* 	UML Stereotypes display 
	*/
	
	/* 	stereotypeDisplay:"Text and Icon"; */
	/* 	textAlignment:Vertical; */
	/* 	displayPlace:"With brace"; */
}

Class {
	fillColor: #C3D7DD;
	lineColor: black;
}

Interface{
	fillColor:#FAFAFC;
}

Class[isAbstract=true], Class[isAbstract=true] *{
	fillColor:#E4E4E7;
	fontColor:gray;
}

Port {
	fillColor: #C8D9F5;
	lineColor: black;
}

Comment {
	fillColor: #FFFFDD;
	gradient: #FFFFFC vertical;
}

Constraint {
	fillColor: #C8FFE6;
}

Package {
	fillColor: white;
}
	

Back to the top