File: darkTheme.css

package info (click to toggle)
eclipse-platform-ua 4.26-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 22,684 kB
  • sloc: java: 101,173; xml: 53,027; javascript: 4,902; jsp: 4,210; makefile: 5
file content (60 lines) | stat: -rw-r--r-- 870 bytes parent folder | download | duplicates (2)
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
@media (prefers-color-scheme: dark) {
	body { 
		color: #f0f0f0; 
		background: #3d3d3d;
	}

	#titleText,
	#searchLabel,
	#scopeLabel,
	#scope,
	a,
	a.active
	a.nolink:link, 
	a.nolink:visited {
		color:#ffffff;
	}

	.button a:hover, .buttonMenu a:hover { 
		border-top:1px solid #3d3d3d; 
		border-<%=isRTL?"right":"left"%>:1px solid #3d3d3d; 
		border-<%=isRTL?"left":"right"%>:1px solid #3d3d3d; 
		border-bottom:1px solid #3d3d3d;
	}

	table {
		background:#3d3d3d;
	}
	.tab {
		background:#7b7c7b
	}

	form {
		background:#3d3d3d;
	}
	
	.separator {

	}
	
	input{
		background:#a0a0a0;
	}

	.button a, .buttonMenu a { 
		border:1px solid #3d3d3d;;
	}
	
	/* darken images to add some comfort while reading in dark theme */
	img {
		opacity: .75;
		transition: opacity .5s ease-in-out;
	}
	img:hover {
		opacity: 1;
	}

	.location, .location a {
		color:#00cc66;
	}
}