Advertisement
dhiforester

modifikasi.css

Mar 25th, 2021
418
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.23 KB | None | 0 0
  1. @import url("../Font/Font.css");
  2. :root {
  3.     --bs-blue: #0948B3;
  4.     --bs-indigo: #31316A;
  5.     --bs-purple: #8965e0;
  6.     --bs-pink: #C96480;
  7.     --bs-red: #FA5252;
  8.     --bs-orange: #FF9F89;
  9.     --bs-yellow: #f5b759;
  10.     --bs-green: #05A677;
  11.     --bs-teal: #1E90FF;
  12.     --bs-cyan: #63b1bd;
  13.     --bs-white: #ffffff;
  14.     --bs-gray: #93a5be;
  15.     --bs-gray-dark: #506690;
  16.     --bs-primary: #262B40;
  17.     --bs-secondary: #F8BD7A;
  18.     --bs-tertiary: #1B998B;
  19.     --bs-quaternary: #0948B3;
  20.     --bs-primary-app: #EBF4F6;
  21.     --bs-secondary-app: #424AA0;
  22.     --bs-light: #eaedf2;
  23.     --bs-lighten: #F0F3F6;
  24.     --bs-success: #05A677;
  25.     --bs-info: #0948B3;
  26.     --bs-warning: #f5b759;
  27.     --bs-danger: #FA5252;
  28.     --bs-white: #ffffff;
  29.     --bs-gray: #4A5073;
  30.     --bs-neutral: #ffffff;
  31.     --bs-dark: #262B40;
  32.     --bs-soft: #f5f8fb;
  33.     --bs-black: #2e3650;
  34.     --bs-blue: #0948B3;
  35.     --bs-pink: #C96480;
  36.     --bs-cyan: #63b1bd;
  37.     --bs-purple: #8965e0;
  38.     --bs-soft-indigo: #f5e8ff;
  39.     --bs-soft-green: #2CA58D;
  40.     --bs-gray-100: #f3f7fa;
  41.     --bs-gray-200: #f5f8fb;
  42.     --bs-gray-300: #F0F3F6;
  43.     --bs-gray-400: #eaedf2;
  44.     --bs-gray-500: #d1d7e0;
  45.     --bs-gray-600: #93a5be;
  46.     --bs-gray-700: #66799e;
  47.     --bs-gray-800: #506690;
  48.     --bs-facebook: #3b5999;
  49.     --bs-twitter: #1da1f2;
  50.     --bs-google: #DB4337;
  51.     --bs-instagram: #e4405f;
  52.     --bs-pinterest: #bd081c;
  53.     --bs-youtube: #cd201f;
  54.     --bs-slack: #3aaf85;
  55.     --bs-dribbble: #ea4c89;
  56.     --bs-dropbox: #1E90FF;
  57.     --bs-twitch: #4B367C;
  58.     --bs-paypal: #ecb32c;
  59.     --bs-behance: #0057ff;
  60.     --bs-reddit: #E84422;
  61.     --bs-github: #222222;
  62.     --bs-font-sans-serif: "Nunito Sans", sans-serif;
  63.     --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  64.     --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  65. }
  66.  
  67. *,
  68. *::before,
  69. *::after {
  70.     box-sizing: border-box;
  71. }
  72.  
  73. body {
  74.     margin: 0;
  75.     font-family: var(--bs-font-sans-serif);
  76.     font-size: 1rem;
  77.     font-weight: 400;
  78.     line-height: 1.5;
  79.     color: #4A5073;
  80.     background-color: #ffffff;
  81.     -webkit-text-size-adjust: 100%;
  82.     -webkit-tap-highlight-color: rgba(46, 54, 80, 0);
  83. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement