Variable.styl 1.6KB

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