Variable.styl 2.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. // Côme - 2018/02/27 - DEPRECATED : now using Variable.styl from tracim_lib
  2. /**** VARIABLES ****/
  3. /*** COULEURS ****/
  4. mainColor = #fdfdfd // Bg header
  5. secondColor = #7d4e24 // #7d4e24 bg sidebar
  6. thirdColor = lighten(secondColor, 25%) // #2571fe bg workspace name
  7. fourthColor = lighten(secondColor, 55%) // #82b2cc bg filter sidebar
  8. fifthColor = lighten(secondColor, 10%)
  9. hover-theme = lighten(secondColor, 75%)
  10. hover-button = lighten(secondColor, 10%)
  11. fontColor = #252525
  12. darkGrey = #252525
  13. rgbGrey = rgba(25,25,25,0.3)
  14. grey = #ababab
  15. lightGrey = #f0f0f0
  16. grey-hover = #e0e0e0
  17. folder-hover = #9BC1eb
  18. files-hover = rgba(155,193,235,0.2)
  19. off-white = #fdfdfd
  20. darkBlue = #215e8e
  21. blue = #2571fe
  22. darkenBlue = darken(blue, 15%)
  23. lightBlue = #569EDE
  24. red = #f63434
  25. // c2a btn color in general context ; meaning every context but specific one related to file type (file, pageHtml, issues, threads ...)
  26. btnCallAction = #28a745
  27. btnCallAction-hover = darken(btnCallAction, 15%)
  28. threadColor = #ad4cf9
  29. darkenThread = darken(threadColor, 15%)
  30. htmlColor = #3f52e3
  31. darkHtmlColor = darken(htmlColor, 15%)
  32. markdownColor = #f12d2d
  33. fileColor = #ff9900
  34. lightFileColor = lighten(fileColor, 15%)
  35. taskColor = #259f6c
  36. issueColor = #a4835e
  37. /** Role Color **/
  38. gestionnaire = #f2af2d
  39. lecteur = #15D948
  40. contributeur = #3145F7
  41. responsable = #ED0007
  42. /** Btn call to action dashboard **/
  43. writefile = #3f52e3
  44. importfile = #ff9900
  45. calendar = red
  46. explore = #87d04c
  47. /** Status Color **/
  48. currentColor = blue
  49. validateColor = explore
  50. cancelColor = red
  51. outdateColor = grey
  52. /** Flash Message Color **/
  53. success = #30ce4e
  54. info = #0094bc
  55. danger = #e81a32
  56. /*************************/
  57. /**** BOX SHADOW ****/
  58. shadow-bottom = 0px 0px 5px 1px #606060
  59. shadow-right = 2px 2px 5px 0px #404040
  60. shadow-all = 0px 0px 3px 1px #656565
  61. shadow-all-side-blue = 0px 0px 1px 1px lightBlue
  62. shadow-all-side-green = 0 0 1px 2px green
  63. shadow-all-side-thread = 0 0 1px 2px threadColor
  64. shadow-all-btn = 0 0 3px 3px lightBlue
  65. /***********************/
  66. /**** MEDIA QUERIES ****/
  67. min-xs = 0px
  68. max-xs = 575px
  69. min-sm = 576px
  70. max-sm = 767px
  71. min-md = 768px
  72. max-md = 991px
  73. min-lg = 992px
  74. max-lg = 1199px
  75. min-xl = 1200px