Variable.styl 2.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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. fontColor = #252525
  10. darkGrey = #252525
  11. rgbGrey = rgba(25,25,25,0.3)
  12. grey = #ababab
  13. lightGrey = #f0f0f0
  14. grey-hover = #e0e0e0
  15. folder-hover = #9BC1eb
  16. files-hover = rgba(155,193,235,0.2)
  17. off-white = #fdfdfd
  18. darkBlue = #215e8e
  19. blue = #2571fe
  20. darkenBlue = darken(blue, 15%)
  21. lightBlue = #569EDE
  22. red = #f63434
  23. // c2a btn color in general context ; meaning every context but specific one related to file type (file, pageHtml, issues, threads ...)
  24. btnCallAction = #28a745
  25. btnCallAction-hover = darken(btnCallAction, 15%)
  26. threadColor = #ad4cf9
  27. darkenThread = darken(threadColor, 15%)
  28. htmlColor = #3f52e3
  29. darkHtmlColor = darken(htmlColor, 15%)
  30. markdownColor = #f12d2d
  31. fileColor = #ff9900
  32. lightFileColor = lighten(fileColor, 15%)
  33. taskColor = #259f6c
  34. issueColor = #a4835e
  35. /** Role Color **/
  36. gestionnaire = #f2af2d
  37. lecteur = #15D948
  38. contributeur = #3145F7
  39. responsable = #ED0007
  40. /** Btn call to action dashboard **/
  41. writefile = #3f52e3
  42. importfile = #ff9900
  43. calendar = red
  44. explore = #87d04c
  45. /** Status Color **/
  46. currentColor = blue
  47. validateColor = explore
  48. cancelColor = red
  49. outdateColor = grey
  50. /*************************/
  51. /**** BOX SHADOW ****/
  52. shadow-bottom = 0px 0px 5px 1px #606060
  53. shadow-right = 2px 2px 5px 0px #404040
  54. shadow-all = 1px 1px 5px 2px #ababab
  55. shadow-all-side-blue = 0px 0px 1px 1px lightBlue
  56. shadow-all-side-green = 0 0 1px 2px green
  57. shadow-all-side-thread = 0 0 1px 2px threadColor
  58. shadow-all-btn = 0 0 3px 3px lightBlue
  59. /***********************/
  60. /**** MEDIA QUERIES ****/
  61. min-xs = 0px
  62. max-xs = 575px
  63. min-sm = 576px
  64. max-sm = 767px
  65. min-md = 768px
  66. max-md = 991px
  67. min-lg = 992px
  68. max-lg = 1199px
  69. min-xl = 1200px