Sha256: 8c1caf078e51ebcec8314a064789003aa04d3a062f00026883af2e0df0a56451

Contents?: true

Size: 422 Bytes

Versions: 6

Compression:

Stored size: 422 Bytes

Contents

/* color names - 008080 */
div.one {
  background-color: teal;
}

/* hex */
div.two {
  color: #386ec0;
}

/* hex short */
div.three {
  color: #c0c;
}

/* rgb -- 718ad7 */
div.four {
  color: rgb(113,138,215);
}

/* rgb spaces -- 3a5dc4 */
div.five {
  color: rgb(58, 93, 196);
}

/* rgba -- 29469e */
div.six {
  color: rgba(41,70,158,0.5);
}

/* rgba spaces -- 3f6aeb */
div.seven {
  color: rgba(63, 106, 235, 0.5);
}

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
color_parser-1.0.6 spec/fixtures/css_color/stylesheets/color_styles.css
color_parser-1.0.5 spec/fixtures/css_color/stylesheets/color_styles.css
color_parser-1.0.4 spec/fixtures/css_color/stylesheets/color_styles.css
color_parser-1.0.2 spec/fixtures/css_color/stylesheets/color_styles.css
color_parser-1.0.1 spec/fixtures/css_color/stylesheets/color_styles.css
color_parser-1.0.0 spec/fixtures/css_color/stylesheets/color_styles.css