Blame view

docs/assets/js/themes/tomorrow-night.css 924 Bytes
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
  /**
   * Tomorrow Night theme
   *
   * @author Chris Kempson
   * @author skim
   * @version 1.0.0
   */
  pre {
      background-color: #1d1f21;
      word-wrap: break-word;
      margin: 0px;
      padding: 10px;
      color: #c5c8c6;
      font-size: 14px;
      margin-bottom: 20px;
  }
  
  pre, code {
      font-family: 'Monaco', courier, monospace;
  }
  
  pre .comment {
      color: #969896;
  }
  
  pre .variable.global, pre .variable.class, pre .variable.instance {
      color: #cc6666; /* red */
  }
  
  pre .constant.numeric, pre .constant.language, pre .constant.hex-color, pre .keyword.unit {
      color: #de935f; /* orange */
  }
  
  pre .constant, pre .entity, pre .entity.class, pre .support {
      color: #f0c674; /* yellow */
  }
  
  pre .constant.symbol, pre .string {
      color: #b5bd68; /* green */
  }
  
  pre .entity.function, pre .support.css-property, pre .selector {
      color: #81a2be; /* blue */
  }
  
  pre .keyword, pre .storage {
      color: #b294bb; /* purple */
  }