Blame view

docs/assets/js/themes/twilight.css 1.09 KB
5a739853   patrick.he   commit
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
  /**
   * Twilight theme
   *
   * Adapted from Michael Sheets' TextMate theme of the same name
   *
   * @author Michael Sheets
   * @author Jesse Farmer <jesse@20bits.com>
   * @version 1.0.1
   */
  pre {
      background: #141414;
      word-wrap: break-word;
      margin: 0px;
      padding: 10px;
      color: #F8F8F8;
      font-size: 14px;
      margin-bottom: 20px;
  }
  
  pre, code {
      font-family: 'Monaco', courier, monospace;
  }
  
  pre .comment {
      color: #5F5A60;
  }
  
  pre .constant.numeric {
      color: #D87D50;
  }
  
  pre .constant {
      color: #889AB4;
  }
  
  pre .constant.symbol, pre .constant.language {
      color: #D87D50;
  }
  
  pre .storage {
      color: #F9EE98;
  }
  
  pre .string {
      color: #8F9D6A;
  }
  
  pre .string.regexp {
      color: #E9C062;
  }
  
  pre .keyword, pre .selector, pre .storage {
      color: #CDA869;
  }
  
  pre .inherited-class {
      color: #9B5C2E;
  }
  
  pre .entity {
      color: #FF6400;
  }
  
  pre .support {
      color: #9B859D;
  }
  
  pre .support.magic {
      color: #DAD69A;
  }
  
  pre .variable {
      color: #7587A6;
  }
  
  pre .function, pre .entity.class {
      color: #9B703F;
  }
  
  pre .support.class-name, pre .support.type {
      color: #AB99AC;
  }