Guest User

Untitled

a guest
Apr 24th, 2021
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ///////////////////////////
  2. ///// Prompt /////
  3. ///////////////////////////
  4. const PromptValues = {
  5.     text: 'Prompt Text', // Prompt text. Max width of the prompt is 200rem.
  6.     color: 'white', // Text color. '#hex', valid color ('white'), 'rgba(0, 0, 0, 1)', etc. MUST BE A STRING.
  7.     background: '#1e88e5', // Background color. '#hex', valid color ('white'), 'rgba(0, 0, 0, 1)', etc. MUST BE A STRING.
  8. };
  9.  
  10. ///////////////////////////
  11. ///// Progbar /////
  12. ///////////////////////////
  13. const ProgbarValues = {
  14.     time: 5000, // Time till completion in ms. Default: 5000
  15.     text: 'Finding some bitches...', // Text to show on the progbar.
  16.     type: 1, // 1 or 2 ONLY. See attached pics.
  17.     // Optional. If not included, it will default to below.
  18.     color: {
  19.     text: 'rgb(154, 154, 154)', // Text color.
  20.     fill: '#1e88e5', // Progress fill color.
  21.     },
  22. };
  23.  
  24. ///////////////////////////
  25. ///// Notification /////
  26. ///////////////////////////
  27. const NotificationValues = {
  28.     // 'success': green, 'error': red, 'inform': blue, 'custom': custom
  29.     style: 'success', // Use 'custom' to set message background
  30.     duration: 5000, // Notification duration in ms.
  31.     message: 'You just bought a phone!', // Notification message.
  32.     color: 'white', // Text color. White or Black ONLY. Will default to white if not present.
  33.     background: '#1e88e5', // [CAN ONLY BE USED WITH 'custom' style.] '#hex', valid color ('white'), 'rgba(0, 0, 0, 1)', etc. MUST BE A STRING.
  34.     // Optional. If not present, will default to below.
  35.     position: {
  36.         x: 'right',
  37.         y: 'top',
  38.     },
  39.     // Optional. If not present, no icon will show.
  40.     icon: {
  41.         name: 'fas fa-globe', // Font Awesome Icons.
  42.         color: 'white', // Icon color. White or Black ONLY. Will default to white if not present.
  43.     },
  44. };
  45.  
Add Comment
Please, Sign In to add comment