This file is indexed.

/usr/share/gtksourceview-2.0/styles/cobalt.xml is in libgtksourceview2.0-common 2.10.5-1ubuntu2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<?xml version="1.0" encoding="UTF-8"?>
<!--

 Copyright (C) 2006-2007 Will Farrington <wcfarrington@gmail.com>

 This library is free software; you can redistribute it and/or
 modify it under the terms of the GNU Library General Public
 License as published by the Free Software Foundation; either
 version 2 of the License, or (at your option) any later version.

 This library is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 Library General Public License for more details.

 You should have received a copy of the GNU Library General Public
 License along with this library; if not, write to the
 Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 Boston, MA 02111-1307, USA.


 Theme based on the style of the same name from pastie.caboo.se
-->

<style-scheme id="cobalt" _name="Cobalt" version="1.0">
  <author>Will Farrington</author>
  <_description>Blue based color scheme</_description>

  <!-- Colors -->
  <color name="faded_yellow"                value="#ffee80"/>
  <color name="bright_orange"               value="#ff9d00"/>
  <color name="faded_orange"                value="#ffb054"/>
  <color name="nail_polish_pink"            value="#ff0044"/>
  <color name="neon_pink"                   value="#ffdd00"/>
  <color name="sky_blue"                    value="#0088ff"/>
  <color name="teal_blue"                   value="#80ffbb"/>
  <color name="light_blue"                  value="#0065bf"/>
  <color name="medium_blue"                 value="#003b70"/>
  <color name="dark_blue"                   value="#001b33"/>
  <color name="black_blue"                  value="#000d1a"/>
  <color name="white"                       value="#ffffff"/>
  <color name="pale_grey"                   value="#eeeeee"/>
  <color name="steel_grey"                  value="#333333"/>
  <color name="spring_green"                value="#3ad900"/>
  <color name="sea_green"                   value="#00BF8C"/>
  <color name="light_grey"                  value="#cccccc"/>
  <color name="dark_red"                    value="#990000"/>
  <color name="bluish_grey"                 value="#777777"/>
  <color name="steelblue3"                  value="#4f94cd"/>

  <!-- Global Settings -->

  <style name="text"                        foreground="white" background="dark_blue"/>
  <style name="selection"                   foreground="white" background="sky_blue"/>
  <style name="cursor"                      foreground="white"/>
  <style name="current-line"                background="medium_blue"/>
  <style name="line-numbers"                foreground="light_blue" background="black_blue"/>
  <style name="draw-spaces"                 foreground="bluish_grey"/>
  
  <!-- Bracket Matching -->
  <style name="bracket-match"               background="steelblue3"/>
  <style name="bracket-mismatch"            background="dark_red" bold="true"/>
  
  <!-- Search Matching -->
  <style name="search-match"                foreground="white" background="sea_green"/>

  <!-- Bookmarks FIXME -->
  <style name="bookmark"                    background="white"/>

  <!-- Comments -->
  <style name="def:comment"                 foreground="sky_blue" italic="true"/>
  <style name="def:shebang"                 foreground="sky_blue" italic="true"/>
  <style name="def:doc-comment-element"     bold="true"/>

  <!-- Constants and Variables-->
  <style name="def:constant"                foreground="faded_yellow"/>
  <style name="def:string"                  foreground="spring_green"/>
  <style name="def:special-char"            foreground="light_grey"/>
  <style name="def:special-constant"        foreground="nail_polish_pink" bold="true"/>
  <style name="def:number"                  foreground="nail_polish_pink"/>
  <style name="def:floating-point"          foreground="nail_polish_pink"/>
  <style name="def:keyword"                 foreground="bright_orange" bold="true"/>
  <style name="def:builtin"                 foreground="bright_orange" bold="true"/>
  <style name="def:variable"                foreground="light_grey"/>
  
  <!-- Identifiers -->
  <style name="def:identifier"              foreground="light_grey"/>
  <style name="def:function"                use-style="def:identifier"/>

  <!-- Statements -->
  <style name="def:statement"               foreground="bright_orange"/>

  <!-- Types -->
  <style name="def:type"                    foreground="teal_blue"/>
  
  <!-- Others -->
  <style name="def:error"                   foreground="white" background="dark_red" bold="true"/>
  <style name="def:note"                    foreground="neon_pink" bold="true"/>
  <style name="def:net-address-in-comment"  foreground="teal_blue" italic="false" underline="true"/>
  <style name="def:preprocessor"            foreground="light_grey"/>
    
  <!-- Unknown? -->
  <style name="def:specials"                foreground="white" background="neon_pink"/>
  <style name="def:boolean"                 foreground="nail_polish_pink"/>

  <!-- C Styles -->
  <style name="c:preprocessor"              foreground="teal_blue" bold="true"/>
  <style name="c:included-file"             foreground="spring_green"/>
  <style name="c:common-defines"            foreground="sky_blue" bold="true"/>

  <!-- Diff Styles -->
  <style name="diff:ignore"                 foreground="bluish_grey"/>
  <style name="diff:added-line"             foreground="faded_yellow"/>
  <style name="diff:removed-line"           foreground="spring_green"/>
  <style name="diff:changed-line"           foreground="bright_orange"/>
  <style name="diff:diff-file"              foreground="sky_blue" bold="true"/>
  <style name="diff:location"               foreground="sky_blue"/>
  <style name="diff:special-case"           foreground="nail_polish_pink" bold="true"/>

  <!-- Ruby Styles -->
  <style name="ruby:module-handler"         foreground="teal_blue"/>
  <style name="ruby:symbol"                 foreground="nail_polish_pink"/>
  <style name="ruby:regex"                  foreground="teal_blue"/>

  <!-- SH Styles -->
  <style name="sh:function"                 foreground="neon_pink"/>
  
  <!-- XML Styles -->
  <style name="xml:attribute-name"          foreground="light_grey"/>
  <style name="xml:element-name"            foreground="teal_blue"/>
  <style name="xml:entity"                  foreground="#blue"/>
  <style name="xml:processing-instruction"  bold="true"/>

</style-scheme>