This file is indexed.

/usr/share/kde4/apps/tagua/themes/squares/Default/theme_chainreaction.lua is in tagua-data 1.0~alpha2-15.

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
import("piece_theme.lua")
import("selection.lua")

theme.background = function(size)
  local i = Image(size,size)
  i:clear("#a0a0a0");
  i:draw_line(Point(0,0),Point(size,0), "black", 2);
  i:draw_line(Point(0,size),Point(size,size), "black", 2);
  i:draw_line(Point(0,0),Point(0,size), "black", 2);
  i:draw_line(Point(size,0),Point(size,size), "black", 2);
  return i
end

theme.validmove = fromColor("#bdaede")