Facebook
From Я, 1 Month ago, written in CSS.
Embed
Download Paste or View Raw
Hits: 163
  1. p {
  2.   font-style: normal;
  3.   color: rgb(22, 16, 16);
  4.   font-size: 18px;
  5. }
  6. .darkred {
  7.   color: rgb(139, 0, 0);
  8.   background-color: rgb(255, 228, 225)
  9. }
  10.  
  11. .red {
  12.   color: rgb(255, 0, 0);
  13.   background-color: rgb(255, 228, 225)
  14.  
  15. }
  16.  
  17. .salmon{
  18.   color: rgb(250, 128, 114);
  19.   background-color: rgb(255, 228, 225)
  20. }
  21.  
  22. .blue {
  23.     color:  rgb(0, 0, 255);
  24.     background-color: rgb(214, 228, 238)
  25. }
  26.  
  27. .darkblue {
  28.     color: rgb(0, 0, 139);
  29.     background-color: rgb(214, 228, 238);
  30. }
  31.  
  32. .lightblue {
  33.   color: rgb(135, 206, 250);
  34.   background-color: rgb(214, 228, 238);
  35. }
  36.  
  37. .darkgreen {
  38.   color: rgb(0, 56, 0);
  39.   background-color: rgb(215, 235, 212);
  40. }
  41.  
  42. .lightgreen {
  43.     color: rgb(122, 207, 122);
  44.     background-color: rgb(215, 235, 212);
  45. }
  46.  
  47. .green {
  48.     color: rgb(0, 128, 0);
  49.     background-color: rgb(215, 235, 212);
  50. }
  51.